Index: Source/WebCore/bindings/v8/custom/V8PopStateEventCustom.cpp |
=================================================================== |
--- Source/WebCore/bindings/v8/custom/V8PopStateEventCustom.cpp (revision 145017) |
+++ Source/WebCore/bindings/v8/custom/V8PopStateEventCustom.cpp (working copy) |
@@ -78,10 +78,10 @@ |
if (!result.IsEmpty()) |
return cacheState(info.Holder(), result); |
} |
- result = event->serializedState()->deserialize(0, info.GetIsolate()); |
+ result = event->serializedState()->deserialize(info.GetIsolate()); |
v8History->SetHiddenValue(V8HiddenPropertyName::state(), result); |
} else |
- result = event->serializedState()->deserialize(0, info.GetIsolate()); |
+ result = event->serializedState()->deserialize(info.GetIsolate()); |
return cacheState(info.Holder(), result); |
} |