Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2284)

Unified Diff: third_party/WebKit/Source/core/dom/DOMArrayBufferBase.h

Issue 2826263002: Make DOMArrayBuffer::Transfer neuter v8::ArrayBuffers (Closed)
Patch Set: add test and use to_transfer Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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(); }
« no previous file with comments | « third_party/WebKit/Source/core/dom/DOMArrayBuffer.cpp ('k') | third_party/WebKit/Source/core/dom/DOMSharedArrayBuffer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698