| Index: ui/web_dialogs/test/test_web_contents_handler.h
|
| diff --git a/ui/web_dialogs/test/test_web_contents_handler.h b/ui/web_dialogs/test/test_web_contents_handler.h
|
| index 86e197be8e79f3843682b2686ef2d4150162a506..691376e260e9fa74b5a1b67404426cd350a58bdd 100644
|
| --- a/ui/web_dialogs/test/test_web_contents_handler.h
|
| +++ b/ui/web_dialogs/test/test_web_contents_handler.h
|
| @@ -16,20 +16,20 @@ class TestWebContentsHandler
|
| : public WebDialogWebContentsDelegate::WebContentsHandler {
|
| public:
|
| TestWebContentsHandler();
|
| - virtual ~TestWebContentsHandler();
|
| + ~TestWebContentsHandler() override;
|
|
|
| private:
|
| // Overridden from WebDialogWebContentsDelegate::WebContentsHandler:
|
| - virtual content::WebContents* OpenURLFromTab(
|
| + content::WebContents* OpenURLFromTab(
|
| content::BrowserContext* context,
|
| content::WebContents* source,
|
| const content::OpenURLParams& params) override;
|
| - virtual void AddNewContents(content::BrowserContext* context,
|
| - content::WebContents* source,
|
| - content::WebContents* new_contents,
|
| - WindowOpenDisposition disposition,
|
| - const gfx::Rect& initial_pos,
|
| - bool user_gesture) override;
|
| + void AddNewContents(content::BrowserContext* context,
|
| + content::WebContents* source,
|
| + content::WebContents* new_contents,
|
| + WindowOpenDisposition disposition,
|
| + const gfx::Rect& initial_pos,
|
| + bool user_gesture) override;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(TestWebContentsHandler);
|
| };
|
|
|