Index: chrome/browser/printing/print_preview_dialog_controller_browsertest.cc |
diff --git a/chrome/browser/printing/print_preview_dialog_controller_browsertest.cc b/chrome/browser/printing/print_preview_dialog_controller_browsertest.cc |
index 232ee1adfe8dda63591f77b3f39a6b3d681f87ab..48711126c493740a65f718b7d7dbdc39fa15afcd 100644 |
--- a/chrome/browser/printing/print_preview_dialog_controller_browsertest.cc |
+++ b/chrome/browser/printing/print_preview_dialog_controller_browsertest.cc |
@@ -33,7 +33,7 @@ class RequestPrintPreviewObserver : public WebContentsObserver { |
private: |
// content::WebContentsObserver implementation. |
- virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE { |
+ virtual bool OnMessageReceived(const IPC::Message& message) override { |
IPC_BEGIN_MESSAGE_MAP(RequestPrintPreviewObserver, message) |
IPC_MESSAGE_HANDLER(PrintHostMsg_RequestPrintPreview, |
OnRequestPrintPreview) |
@@ -67,7 +67,7 @@ class PrintPreviewDialogClonedObserver : public WebContentsObserver { |
// content::WebContentsObserver implementation. |
virtual void DidCloneToNewWebContents( |
WebContents* old_web_contents, |
- WebContents* new_web_contents) OVERRIDE { |
+ WebContents* new_web_contents) override { |
request_preview_dialog_observer_.reset( |
new RequestPrintPreviewObserver(new_web_contents)); |
} |
@@ -89,7 +89,7 @@ class PrintPreviewDialogDestroyedObserver : public WebContentsObserver { |
private: |
// content::WebContentsObserver implementation. |
- virtual void WebContentsDestroyed() OVERRIDE { |
+ virtual void WebContentsDestroyed() override { |
dialog_destroyed_ = true; |
} |
@@ -121,7 +121,7 @@ class PrintPreviewDialogControllerBrowserTest : public InProcessBrowserTest { |
} |
private: |
- virtual void SetUpOnMainThread() OVERRIDE { |
+ virtual void SetUpOnMainThread() override { |
WebContents* first_tab = |
browser()->tab_strip_model()->GetActiveWebContents(); |
ASSERT_TRUE(first_tab); |
@@ -139,7 +139,7 @@ class PrintPreviewDialogControllerBrowserTest : public InProcessBrowserTest { |
ASSERT_NE(first_tab, initiator_); |
} |
- virtual void TearDownOnMainThread() OVERRIDE { |
+ virtual void TearDownOnMainThread() override { |
cloned_tab_observer_.reset(); |
initiator_ = NULL; |
} |