| 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;
|
|
|
|
|