Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(214)

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. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« 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
This is Rietveld 408576698