| Index: Source/core/dom/SharedArrayBuffer.idl
|
| diff --git a/Source/core/dom/ArrayBuffer.idl b/Source/core/dom/SharedArrayBuffer.idl
|
| similarity index 70%
|
| copy from Source/core/dom/ArrayBuffer.idl
|
| copy to Source/core/dom/SharedArrayBuffer.idl
|
| index 12c506b725dbbdf349127840d66fa61dc1309513..b916977517fbef4eb74c2c67f67fc52ceadc6508 100644
|
| --- a/Source/core/dom/ArrayBuffer.idl
|
| +++ b/Source/core/dom/SharedArrayBuffer.idl
|
| @@ -2,11 +2,13 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| +// TODO(binji): spec
|
| // https://www.khronos.org/registry/typedarray/specs/latest/#ARRAYBUFFER
|
|
|
| [
|
| - ImplementedAs=DOMArrayBuffer,
|
| + ImplementedAs=DOMSharedArrayBuffer,
|
| NoInterfaceObject,
|
| -] interface ArrayBuffer {
|
| + RuntimeEnabled=SharedArrayBuffer,
|
| +] interface SharedArrayBuffer {
|
| readonly attribute unsigned long byteLength;
|
| };
|
|
|