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

Unified Diff: Source/core/frame/History.idl

Issue 1046423002: [bindings] Remove History.(push|replace)State custom bindings (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Hurray! No more custom binding here Created 5 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/bindings/core/v8/custom/custom.gypi ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/frame/History.idl
diff --git a/Source/core/frame/History.idl b/Source/core/frame/History.idl
index c485dc830e9a4b25bb1fbee629e8a146876e78ff..61d7d5ca7f02fa3fc9720e02f34e971508e1ce11 100644
--- a/Source/core/frame/History.idl
+++ b/Source/core/frame/History.idl
@@ -34,6 +34,6 @@
[CallWith=ExecutionContext] void go([Default=Undefined] optional long distance);
// FIXME: the title arguments below should simply be 'DOMString title'.
- [Custom=CallEpilogue, RaisesException] void pushState(SerializedScriptValue data, [TreatUndefinedAs=NullString] DOMString? title, optional DOMString? url = null);
- [Custom=CallEpilogue, RaisesException] void replaceState(SerializedScriptValue data, [TreatUndefinedAs=NullString] DOMString? title, optional DOMString? url = null);
+ [RaisesException] void pushState(SerializedScriptValue data, [TreatUndefinedAs=NullString] DOMString? title, optional DOMString? url = null);
+ [RaisesException] void replaceState(SerializedScriptValue data, [TreatUndefinedAs=NullString] DOMString? title, optional DOMString? url = null);
};
« no previous file with comments | « Source/bindings/core/v8/custom/custom.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698