| Index: third_party/WebKit/Source/core/dom/DOMArrayBufferBase.h
|
| diff --git a/third_party/WebKit/Source/core/dom/DOMArrayBufferBase.h b/third_party/WebKit/Source/core/dom/DOMArrayBufferBase.h
|
| index 57dbc9751ed400f297f3baec192bac9214b3c653..9f06071872dd5c0b2be071de0621650cd462c5e4 100644
|
| --- a/third_party/WebKit/Source/core/dom/DOMArrayBufferBase.h
|
| +++ b/third_party/WebKit/Source/core/dom/DOMArrayBufferBase.h
|
| @@ -24,12 +24,6 @@ class CORE_EXPORT DOMArrayBufferBase
|
| const void* Data() const { return Buffer()->Data(); }
|
| void* Data() { return Buffer()->Data(); }
|
| unsigned ByteLength() const { return Buffer()->ByteLength(); }
|
| - bool Transfer(WTF::ArrayBufferContents& result) {
|
| - return Buffer()->Transfer(result);
|
| - }
|
| - bool ShareContentsWith(WTF::ArrayBufferContents& result) {
|
| - return Buffer()->ShareContentsWith(result);
|
| - }
|
| bool IsNeutered() const { return Buffer()->IsNeutered(); }
|
| bool IsShared() const { return Buffer()->IsShared(); }
|
|
|
|
|