[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/+/2015942
Reviewed-by: Ben Smith <binji@chromium.org>
Commit-Queue: Adam Klein <adamk@chromium.org>
Cr-Commit-Position: refs/heads/master@{#65935}
This commit is contained in:
Adam Klein 2020-01-22 14:44:12 -08:00 committed by Commit Bot
parent b1a482f714
commit d92bc12243

View File

@ -2798,7 +2798,6 @@ class V8_EXPORT Value : public Data {
/**
* Returns true if this value is a SharedArrayBuffer.
* This is an experimental feature.
*/
bool IsSharedArrayBuffer() const;
@ -5534,7 +5533,6 @@ class V8_EXPORT DataView : public ArrayBufferView {
/**
* An instance of the built-in SharedArrayBuffer constructor.
* This API is experimental and may change significantly.
*/
class V8_EXPORT SharedArrayBuffer : public Object {
public:
@ -5546,8 +5544,6 @@ class V8_EXPORT SharedArrayBuffer : public Object {
* The Data pointer of ArrayBuffer::Contents must be freed using the provided
* deleter, which will call ArrayBuffer::Allocator::Free if the buffer
* was allocated with ArraryBuffer::Allocator::Allocate.
*
* This API is experimental and may change significantly.
*/
class V8_EXPORT Contents { // NOLINT
public: