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

Unified Diff: Source/bindings/core/v8/SerializedScriptValue.h

Issue 1097773004: Sharing of SharedArrayBuffer via PostMessage transfer (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: . Created 5 years, 6 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: Source/bindings/core/v8/SerializedScriptValue.h
diff --git a/Source/bindings/core/v8/SerializedScriptValue.h b/Source/bindings/core/v8/SerializedScriptValue.h
index 9cccebb2ad009ad0d1a637b51dd24a9381f46de8..b672e416b5e60c8598ec485b2fdcf2ab311e3bd8 100644
--- a/Source/bindings/core/v8/SerializedScriptValue.h
+++ b/Source/bindings/core/v8/SerializedScriptValue.h
@@ -46,13 +46,13 @@ class ArrayBufferContents;
namespace blink {
class BlobDataHandle;
-class DOMArrayBuffer;
+class DOMArrayBufferBase;
class ExceptionState;
class MessagePort;
class WebBlobInfo;
typedef WillBeHeapVector<RefPtrWillBeMember<MessagePort>, 1> MessagePortArray;
-typedef Vector<RefPtr<DOMArrayBuffer>, 1> ArrayBufferArray;
+typedef Vector<RefPtr<DOMArrayBufferBase>, 1> ArrayBufferArray;
typedef HashMap<String, RefPtr<BlobDataHandle>> BlobDataHandleMap;
typedef Vector<WebBlobInfo> WebBlobInfoArray;

Powered by Google App Engine
This is Rietveld 408576698