Index: Source/WebCore/bindings/v8/custom/V8HistoryCustom.cpp |
=================================================================== |
--- Source/WebCore/bindings/v8/custom/V8HistoryCustom.cpp (revision 145017) |
+++ Source/WebCore/bindings/v8/custom/V8HistoryCustom.cpp (working copy) |
@@ -52,7 +52,7 @@ |
return value; |
RefPtr<SerializedScriptValue> serialized = history->state(); |
- value = serialized ? serialized->deserialize(0, info.GetIsolate()) : v8::Handle<v8::Value>(v8Null(info.GetIsolate())); |
+ value = serialized ? serialized->deserialize(info.GetIsolate()) : v8::Handle<v8::Value>(v8Null(info.GetIsolate())); |
info.Holder()->SetHiddenValue(V8HiddenPropertyName::state(), value); |
return value; |