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

Unified Diff: third_party/WebKit/Source/bindings/modules/v8/V8BindingForModules.cpp

Issue 2749503002: [wasm] enable wasm structured cloning in specific cases (Closed)
Patch Set: async Created 3 years, 9 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/modules/v8/V8BindingForModules.cpp
diff --git a/third_party/WebKit/Source/bindings/modules/v8/V8BindingForModules.cpp b/third_party/WebKit/Source/bindings/modules/v8/V8BindingForModules.cpp
index f042536f137bbddbf15cc438d4bd04613997e68a..f2a8be4e39a38c7f30aafb55075aec6c9dd5f064 100644
--- a/third_party/WebKit/Source/bindings/modules/v8/V8BindingForModules.cpp
+++ b/third_party/WebKit/Source/bindings/modules/v8/V8BindingForModules.cpp
@@ -389,6 +389,7 @@ static v8::Local<v8::Value> deserializeIDBValueData(v8::Isolate* isolate,
value->createSerializedValue();
SerializedScriptValue::DeserializeOptions options;
options.blobInfo = value->blobInfo();
+ options.readWasmFromStream = true;
return serializedValue->deserialize(isolate, options);
}

Powered by Google App Engine
This is Rietveld 408576698