| Index: third_party/WebKit/Source/core/frame/LocalDOMWindow.h
|
| diff --git a/third_party/WebKit/Source/core/frame/LocalDOMWindow.h b/third_party/WebKit/Source/core/frame/LocalDOMWindow.h
|
| index 207635ef23de8f2f1f9bf402303b136e248ce6fc..9729689c0a597bcb268b0f9fb76fff8a9903caef 100644
|
| --- a/third_party/WebKit/Source/core/frame/LocalDOMWindow.h
|
| +++ b/third_party/WebKit/Source/core/frame/LocalDOMWindow.h
|
| @@ -119,11 +119,11 @@ public:
|
| int orientation() const override;
|
| DOMSelection* getSelection() override;
|
| void blur() override;
|
| - void print() override;
|
| + void print(ScriptState*) override;
|
| void stop() override;
|
| - void alert(const String& message = String()) override;
|
| - bool confirm(const String& message) override;
|
| - String prompt(const String& message, const String& defaultValue) override;
|
| + void alert(ScriptState*, const String& message = String()) override;
|
| + bool confirm(ScriptState*, const String& message) override;
|
| + String prompt(ScriptState*, const String& message, const String& defaultValue) override;
|
| bool find(const String&, bool caseSensitive, bool backwards, bool wrap, bool wholeWord, bool searchInFrames, bool showDialog) const override;
|
|
|
| // FIXME: ScrollBehaviorSmooth is currently unsupported in VisualViewport.
|
|
|