Commit d92bc122 authored by Adam Klein's avatar Adam Klein Committed by Commit Bot

[api] Remove "experimental" warnings from SharedArrayBuffer in v8.h

The feature has been on-by-default in Chrome for nearly a year now,
and is an established part of the ECMAScript standard.

Change-Id: Icf9d424e5fe9139c12fc26b41603b4e39f79ea54
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2015942Reviewed-by: 's avatarBen Smith <binji@chromium.org>
Commit-Queue: Adam Klein <adamk@chromium.org>
Cr-Commit-Position: refs/heads/master@{#65935}
parent b1a482f7
...@@ -2798,7 +2798,6 @@ class V8_EXPORT Value : public Data { ...@@ -2798,7 +2798,6 @@ class V8_EXPORT Value : public Data {
/** /**
* Returns true if this value is a SharedArrayBuffer. * Returns true if this value is a SharedArrayBuffer.
* This is an experimental feature.
*/ */
bool IsSharedArrayBuffer() const; bool IsSharedArrayBuffer() const;
...@@ -5534,7 +5533,6 @@ class V8_EXPORT DataView : public ArrayBufferView { ...@@ -5534,7 +5533,6 @@ class V8_EXPORT DataView : public ArrayBufferView {
/** /**
* An instance of the built-in SharedArrayBuffer constructor. * An instance of the built-in SharedArrayBuffer constructor.
* This API is experimental and may change significantly.
*/ */
class V8_EXPORT SharedArrayBuffer : public Object { class V8_EXPORT SharedArrayBuffer : public Object {
public: public:
...@@ -5546,8 +5544,6 @@ class V8_EXPORT SharedArrayBuffer : public Object { ...@@ -5546,8 +5544,6 @@ class V8_EXPORT SharedArrayBuffer : public Object {
* The Data pointer of ArrayBuffer::Contents must be freed using the provided * The Data pointer of ArrayBuffer::Contents must be freed using the provided
* deleter, which will call ArrayBuffer::Allocator::Free if the buffer * deleter, which will call ArrayBuffer::Allocator::Free if the buffer
* was allocated with ArraryBuffer::Allocator::Allocate. * was allocated with ArraryBuffer::Allocator::Allocate.
*
* This API is experimental and may change significantly.
*/ */
class V8_EXPORT Contents { // NOLINT class V8_EXPORT Contents { // NOLINT
public: public:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment