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

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

Issue 2616923002: Replace [CallWith=ExecutionContext] with [CallWith=ScriptState] (Closed)
Patch Set: Fix errors Created 3 years, 11 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 | « third_party/WebKit/Source/core/frame/History.cpp ('k') | third_party/WebKit/Source/core/html/FormData.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/frame/History.idl
diff --git a/third_party/WebKit/Source/core/frame/History.idl b/third_party/WebKit/Source/core/frame/History.idl
index 6add189d4a92cf6cd8d6d1b5fe3d0655200c44e9..81588c28d020f900f07ca6b4f7b4c40834d45fbe 100644
--- a/third_party/WebKit/Source/core/frame/History.idl
+++ b/third_party/WebKit/Source/core/frame/History.idl
@@ -32,9 +32,9 @@ interface History {
[Measure] attribute ScrollRestoration scrollRestoration;
// TODO(foolip): The SerializedScriptValue type should be any.
[CachedAttribute=stateChanged] readonly attribute SerializedScriptValue state;
- [CallWith=ExecutionContext] void go(optional long delta = 0);
- [CallWith=ExecutionContext] void back();
- [CallWith=ExecutionContext] void forward();
+ [CallWith=ScriptState] void go(optional long delta = 0);
+ [CallWith=ScriptState] void back();
+ [CallWith=ScriptState] void forward();
[RaisesException] void pushState(SerializedScriptValue data, DOMString title, optional DOMString? url = null);
[RaisesException] void replaceState(SerializedScriptValue data, DOMString title, optional DOMString? url = null);
};
« no previous file with comments | « third_party/WebKit/Source/core/frame/History.cpp ('k') | third_party/WebKit/Source/core/html/FormData.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698