| 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,
|
|
|