| Index: Source/bindings/v8/custom/V8HistoryCustom.cpp
|
| diff --git a/Source/bindings/v8/custom/V8HistoryCustom.cpp b/Source/bindings/v8/custom/V8HistoryCustom.cpp
|
| index bbf6b2b5ec5d5c4e420f38a80b1c3321808c6ff9..427e87765323f3d34dfa690dfd889875367e1523 100644
|
| --- a/Source/bindings/v8/custom/V8HistoryCustom.cpp
|
| +++ b/Source/bindings/v8/custom/V8HistoryCustom.cpp
|
| @@ -69,7 +69,7 @@ void V8History::pushStateMethodCustom(const v8::FunctionCallbackInfo<v8::Value>&
|
| V8TRYCATCH_FOR_V8STRINGRESOURCE_VOID(V8StringResource<WithUndefinedOrNullCheck>, title, info[1]);
|
| V8TRYCATCH_FOR_V8STRINGRESOURCE_VOID(V8StringResource<WithUndefinedOrNullCheck>, url, argumentOrNull(info, 2));
|
|
|
| - ExceptionState exceptionState(info.GetIsolate());
|
| + ExceptionState exceptionState(info.Holder(), info.GetIsolate());
|
| History* history = V8History::toNative(info.Holder());
|
| history->stateObjectAdded(historyState.release(), title, url, SameDocumentNavigationPushState, exceptionState);
|
| info.Holder()->DeleteHiddenValue(V8HiddenPropertyName::state(info.GetIsolate()));
|
| @@ -86,7 +86,7 @@ void V8History::replaceStateMethodCustom(const v8::FunctionCallbackInfo<v8::Valu
|
| V8TRYCATCH_FOR_V8STRINGRESOURCE_VOID(V8StringResource<WithUndefinedOrNullCheck>, title, info[1]);
|
| V8TRYCATCH_FOR_V8STRINGRESOURCE_VOID(V8StringResource<WithUndefinedOrNullCheck>, url, argumentOrNull(info, 2));
|
|
|
| - ExceptionState exceptionState(info.GetIsolate());
|
| + ExceptionState exceptionState(info.Holder(), info.GetIsolate());
|
| History* history = V8History::toNative(info.Holder());
|
| history->stateObjectAdded(historyState.release(), title, url, SameDocumentNavigationReplaceState, exceptionState);
|
| info.Holder()->DeleteHiddenValue(V8HiddenPropertyName::state(info.GetIsolate()));
|
|
|