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 e87f5a2f8b63f7ecd00af9f9c894c7621863f9b1..71afe9b42fbac7bfedde7a561000ebc0d582b574 100644 |
--- a/chrome/browser/autofill/content_autofill_driver_browsertest.cc |
+++ b/chrome/browser/autofill/content_autofill_driver_browsertest.cc |
@@ -77,7 +77,7 @@ class ContentAutofillDriverBrowserTest : public InProcessBrowserTest, |
ContentAutofillDriverBrowserTest() {} |
virtual ~ContentAutofillDriverBrowserTest() {} |
- virtual void SetUpOnMainThread() override { |
+ void SetUpOnMainThread() override { |
content::WebContents* web_contents = |
browser()->tab_strip_model()->GetActiveWebContents(); |
ASSERT_TRUE(web_contents != NULL); |
@@ -92,20 +92,18 @@ class ContentAutofillDriverBrowserTest : public InProcessBrowserTest, |
AutofillManager::DISABLE_AUTOFILL_DOWNLOAD_MANAGER); |
} |
- virtual void WasHidden() override { |
+ void WasHidden() override { |
if (!web_contents_hidden_callback_.is_null()) |
web_contents_hidden_callback_.Run(); |
} |
- virtual void NavigationEntryCommitted( |
+ void NavigationEntryCommitted( |
const content::LoadCommittedDetails& load_details) override { |
if (!nav_entry_committed_callback_.is_null()) |
nav_entry_committed_callback_.Run(); |
} |
protected: |
- content::WebContents* web_contents_; |
- |
base::Closure web_contents_hidden_callback_; |
base::Closure nav_entry_committed_callback_; |