Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(13)

Unified Diff: chrome/browser/autofill/content_autofill_driver_browsertest.cc

Issue 625113002: replace OVERRIDE and FINAL with override and final in chrome/browser/[a-i]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix newly added OVERRIDEs Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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();
}
« no previous file with comments | « chrome/browser/autofill/autofill_server_browsertest.cc ('k') | chrome/browser/autofill/form_structure_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698