Index: chrome/browser/autofill/content_autofill_driver_browsertest.cc |
diff --git a/chrome/browser/autofill/content_autofill_driver_browsertest.cc b/chrome/browser/autofill/content_autofill_driver_browsertest.cc |
index f40087bb7bfc27e93f95ee3063e3fdedcc5a1dd8..77e9beac4db154a172a6497c551472af874c67e1 100644 |
--- a/chrome/browser/autofill/content_autofill_driver_browsertest.cc |
+++ b/chrome/browser/autofill/content_autofill_driver_browsertest.cc |
@@ -79,7 +79,7 @@ class ContentAutofillDriverBrowserTest : public InProcessBrowserTest, |
ContentAutofillDriverBrowserTest() {} |
virtual ~ContentAutofillDriverBrowserTest() {} |
- virtual void SetUpOnMainThread() OVERRIDE { |
+ virtual void SetUpOnMainThread() override { |
content::WebContents* web_contents = |
browser()->tab_strip_model()->GetActiveWebContents(); |
ASSERT_TRUE(web_contents != NULL); |
@@ -92,17 +92,17 @@ class ContentAutofillDriverBrowserTest : public InProcessBrowserTest, |
// Normally the WebContents will automatically delete the driver, but here |
// the driver is owned by this test, so we have to manually destroy. |
- virtual void WebContentsDestroyed() OVERRIDE { |
+ virtual void WebContentsDestroyed() override { |
autofill_driver_.reset(); |
} |
- virtual void WasHidden() OVERRIDE { |
+ virtual void WasHidden() override { |
if (!web_contents_hidden_callback_.is_null()) |
web_contents_hidden_callback_.Run(); |
} |
virtual void NavigationEntryCommitted( |
- const content::LoadCommittedDetails& load_details) OVERRIDE { |
+ const content::LoadCommittedDetails& load_details) override { |
if (!nav_entry_committed_callback_.is_null()) |
nav_entry_committed_callback_.Run(); |
} |