| Index: ui/web_dialogs/test/test_web_dialog_delegate.h
|
| diff --git a/ui/web_dialogs/test/test_web_dialog_delegate.h b/ui/web_dialogs/test/test_web_dialog_delegate.h
|
| index 18a73b2558d328f8fffd2adcdcb862df618711d5..b289536f776d61273ad0ea64b4d9dfa5a8adabb1 100644
|
| --- a/ui/web_dialogs/test/test_web_dialog_delegate.h
|
| +++ b/ui/web_dialogs/test/test_web_dialog_delegate.h
|
| @@ -25,17 +25,17 @@ class TestWebDialogDelegate : public WebDialogDelegate {
|
| }
|
|
|
| // WebDialogDelegate implementation:
|
| - virtual ModalType GetDialogModalType() const OVERRIDE;
|
| - virtual base::string16 GetDialogTitle() const OVERRIDE;
|
| - virtual GURL GetDialogContentURL() const OVERRIDE;
|
| + virtual ModalType GetDialogModalType() const override;
|
| + virtual base::string16 GetDialogTitle() const override;
|
| + virtual GURL GetDialogContentURL() const override;
|
| virtual void GetWebUIMessageHandlers(
|
| - std::vector<content::WebUIMessageHandler*>* handlers) const OVERRIDE;
|
| - virtual void GetDialogSize(gfx::Size* size) const OVERRIDE;
|
| - virtual std::string GetDialogArgs() const OVERRIDE;
|
| - virtual void OnDialogClosed(const std::string& json_retval) OVERRIDE;
|
| + std::vector<content::WebUIMessageHandler*>* handlers) const override;
|
| + virtual void GetDialogSize(gfx::Size* size) const override;
|
| + virtual std::string GetDialogArgs() const override;
|
| + virtual void OnDialogClosed(const std::string& json_retval) override;
|
| virtual void OnCloseContents(content::WebContents* source,
|
| - bool* out_close_dialog) OVERRIDE;
|
| - virtual bool ShouldShowDialogTitle() const OVERRIDE;
|
| + bool* out_close_dialog) override;
|
| + virtual bool ShouldShowDialogTitle() const override;
|
|
|
| protected:
|
| const GURL url_;
|
|
|