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

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

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
Index: third_party/WebKit/Source/core/frame/History.h
diff --git a/third_party/WebKit/Source/core/frame/History.h b/third_party/WebKit/Source/core/frame/History.h
index 6a3715ff9f1d60e9f50664ba18e2ad797dc29a24..1b3db7024cc3d6347849523b14e2303a722ee43d 100644
--- a/third_party/WebKit/Source/core/frame/History.h
+++ b/third_party/WebKit/Source/core/frame/History.h
@@ -38,9 +38,9 @@ namespace blink {
class LocalFrame;
class KURL;
-class ExecutionContext;
class ExceptionState;
class SecurityOrigin;
+class ScriptState;
// This class corresponds to the History interface.
class CORE_EXPORT History final : public GarbageCollectedFinalized<History>,
@@ -55,9 +55,9 @@ class CORE_EXPORT History final : public GarbageCollectedFinalized<History>,
unsigned length() const;
SerializedScriptValue* state();
- void back(ExecutionContext*);
- void forward(ExecutionContext*);
- void go(ExecutionContext*, int delta);
+ void back(ScriptState*);
+ void forward(ScriptState*);
+ void go(ScriptState*, int delta);
void pushState(PassRefPtr<SerializedScriptValue> data,
const String& title,
« no previous file with comments | « third_party/WebKit/Source/core/fileapi/FileReaderSync.idl ('k') | third_party/WebKit/Source/core/frame/History.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698