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

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

Issue 1097773004: Sharing of SharedArrayBuffer via PostMessage transfer (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: additional flag in virtual test suite Created 5 years, 5 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
« no previous file with comments | « Source/bindings/tests/results/core/V8Uint8ClampedArray.cpp ('k') | Source/core/dom/SharedArrayBuffer.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/DOMArrayBufferBase.h
diff --git a/Source/core/dom/DOMArrayBufferBase.h b/Source/core/dom/DOMArrayBufferBase.h
index c2863a7ecd3ecb1aa3104b565494670d8804e4fc..6c73bf546f8647c3f7d43f98a0ef96923de6c690 100644
--- a/Source/core/dom/DOMArrayBufferBase.h
+++ b/Source/core/dom/DOMArrayBufferBase.h
@@ -23,6 +23,7 @@ public:
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 | « Source/bindings/tests/results/core/V8Uint8ClampedArray.cpp ('k') | Source/core/dom/SharedArrayBuffer.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698