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

Unified Diff: Source/web/WebSerializedScriptValue.cpp

Issue 1097773004: Sharing of SharedArrayBuffer via PostMessage transfer (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: update for non-split typedarray hierarchy 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/web/WebSerializedScriptValue.cpp
diff --git a/Source/web/WebSerializedScriptValue.cpp b/Source/web/WebSerializedScriptValue.cpp
index db366e06c15973b69801f1e34eaf62a0af31c1aa..4ed198bb6f6da6e1f0d94bd4c788f7cd31749e30 100644
--- a/Source/web/WebSerializedScriptValue.cpp
+++ b/Source/web/WebSerializedScriptValue.cpp
@@ -46,7 +46,7 @@ WebSerializedScriptValue WebSerializedScriptValue::fromString(const WebString& s
WebSerializedScriptValue WebSerializedScriptValue::serialize(v8::Local<v8::Value> value)
{
TrackExceptionState exceptionState;
- WebSerializedScriptValue serializedValue = SerializedScriptValueFactory::instance().create(v8::Isolate::GetCurrent(), value, 0, 0, exceptionState);
+ WebSerializedScriptValue serializedValue = SerializedScriptValueFactory::instance().create(v8::Isolate::GetCurrent(), value, 0, 0, 0, exceptionState);
if (exceptionState.hadException())
return createInvalid();
return serializedValue;

Powered by Google App Engine
This is Rietveld 408576698