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

Unified Diff: third_party/WebKit/Source/bindings/core/v8/ScriptValueSerializer.h

Issue 2255673003: [wasm] Support wasm module structured cloning. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Setup isolate Created 4 years, 4 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/bindings/core/v8/ScriptValueSerializer.h
diff --git a/third_party/WebKit/Source/bindings/core/v8/ScriptValueSerializer.h b/third_party/WebKit/Source/bindings/core/v8/ScriptValueSerializer.h
index 8b1d67030b2f4a879d4e0117f85fe862693874f2..a6f60a45095f68d054051501e960cd1aa84bc575 100644
--- a/third_party/WebKit/Source/bindings/core/v8/ScriptValueSerializer.h
+++ b/third_party/WebKit/Source/bindings/core/v8/ScriptValueSerializer.h
@@ -417,6 +417,7 @@ private:
StateBase* writeAndGreyImageBitmap(v8::Local<v8::Object>, StateBase* next);
void writeRegExp(v8::Local<v8::Value>);
StateBase* writeAndGreyArrayBufferView(v8::Local<v8::Object>, StateBase* next);
+ StateBase* writeWasmCompiledModule(v8::Local<v8::Object>, StateBase* next);
StateBase* writeAndGreyArrayBuffer(v8::Local<v8::Object>, StateBase* next);
StateBase* writeTransferredOffscreenCanvas(v8::Local<v8::Value>, uint32_t index, StateBase* next);
StateBase* writeTransferredSharedArrayBuffer(v8::Local<v8::Value>, uint32_t index, StateBase* next);
@@ -521,6 +522,7 @@ private:
DOMArrayBuffer* doReadArrayBuffer();
bool readArrayBuffer(v8::Local<v8::Value>*);
bool readArrayBufferView(v8::Local<v8::Value>*, ScriptValueDeserializer&);
+ bool readWasmCompiledModule(v8::Local<v8::Value>*);
bool readRegExp(v8::Local<v8::Value>*);
bool readBlob(v8::Local<v8::Value>*, bool isIndexed);
bool readFile(v8::Local<v8::Value>*, bool isIndexed);

Powered by Google App Engine
This is Rietveld 408576698