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

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: LayoutTests and virtual path Created 4 years, 3 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 55bfef6630fc5ef1306b6a30e55f60a16ee5292b..9d99b07093b1cf6f7b37d4e7545a9ccd93b93dbc 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);
@@ -525,6 +526,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