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

Unified Diff: sky/engine/bindings/core/v8/custom/V8HistoryCustom.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
Index: sky/engine/bindings/core/v8/custom/V8HistoryCustom.cpp
diff --git a/sky/engine/bindings/core/v8/custom/V8HistoryCustom.cpp b/sky/engine/bindings/core/v8/custom/V8HistoryCustom.cpp
index bf5ded0be86e8877d94c8ecf67d411821528eef7..35d267df0f0f1183f415dbd99b95d02d16d7a5c3 100644
--- a/sky/engine/bindings/core/v8/custom/V8HistoryCustom.cpp
+++ b/sky/engine/bindings/core/v8/custom/V8HistoryCustom.cpp
@@ -62,7 +62,7 @@ void V8History::stateAttributeGetterCustom(const v8::PropertyCallbackInfo<v8::Va
void V8History::pushStateMethodCustom(const v8::FunctionCallbackInfo<v8::Value>& info)
{
ExceptionState exceptionState(ExceptionState::ExecutionContext, "pushState", "History", info.Holder(), info.GetIsolate());
- RefPtr<SerializedScriptValue> historyState = SerializedScriptValue::create(info[0], 0, 0, exceptionState, info.GetIsolate());
+ RefPtr<SerializedScriptValue> historyState = SerializedScriptValue::create(info[0], 0, exceptionState, info.GetIsolate());
if (exceptionState.throwIfNeeded())
return;
« no previous file with comments | « sky/engine/bindings/core/v8/SerializedScriptValue.cpp ('k') | sky/engine/bindings/core/v8/custom/V8MessageChannelCustom.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698