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

Unified Diff: sky/engine/web/WebSerializedScriptValue.cpp

Issue 676723003: Remove postMessage, MessageChannel and MessagePort. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 6 years, 2 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
« no previous file with comments | « sky/engine/web/WebLocalFrameImpl.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/engine/web/WebSerializedScriptValue.cpp
diff --git a/sky/engine/web/WebSerializedScriptValue.cpp b/sky/engine/web/WebSerializedScriptValue.cpp
index 6211274913ae7051d8e464bb33587b463df3d176..4ffd3fb47fe9ea72b1e081e730b0c67d05a4c4b8 100644
--- a/sky/engine/web/WebSerializedScriptValue.cpp
+++ b/sky/engine/web/WebSerializedScriptValue.cpp
@@ -45,7 +45,7 @@ WebSerializedScriptValue WebSerializedScriptValue::fromString(const WebString& s
WebSerializedScriptValue WebSerializedScriptValue::serialize(v8::Handle<v8::Value> value)
{
TrackExceptionState exceptionState;
- WebSerializedScriptValue serializedValue = SerializedScriptValue::create(value, 0, 0, exceptionState, v8::Isolate::GetCurrent());
+ WebSerializedScriptValue serializedValue = SerializedScriptValue::create(value, 0, exceptionState, v8::Isolate::GetCurrent());
if (exceptionState.hadException())
return createInvalid();
return serializedValue;
« no previous file with comments | « sky/engine/web/WebLocalFrameImpl.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698