Chromium Code Reviews

Unified Diff: Source/WebCore/bindings/v8/custom/V8PopStateEventCustom.cpp

Issue 12560005: Merge 139854 (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1364/
Patch Set: Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
« no previous file with comments | « Source/WebCore/bindings/v8/custom/V8MessageEventCustom.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
}
« no previous file with comments | « Source/WebCore/bindings/v8/custom/V8MessageEventCustom.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine