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

Unified Diff: chrome/browser/ui/autofill/autofill_popup_controller_interactive_uitest.cc

Issue 627043002: replace OVERRIDE and FINAL with override and final in chrome/browser/ui/[a-s]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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/ui/autofill/autofill_popup_controller_interactive_uitest.cc
diff --git a/chrome/browser/ui/autofill/autofill_popup_controller_interactive_uitest.cc b/chrome/browser/ui/autofill/autofill_popup_controller_interactive_uitest.cc
index 9b8f81b8ee99e9ce90e999dc4c9777859b70e94c..d2893044b82cf0d3a68f653ebbda918de2b4a252 100644
--- a/chrome/browser/ui/autofill/autofill_popup_controller_interactive_uitest.cc
+++ b/chrome/browser/ui/autofill/autofill_popup_controller_interactive_uitest.cc
@@ -30,13 +30,13 @@ class TestAutofillExternalDelegate : public AutofillExternalDelegate {
popup_hidden_(true) {}
virtual ~TestAutofillExternalDelegate() {}
- virtual void OnPopupShown() OVERRIDE {
+ virtual void OnPopupShown() override {
popup_hidden_ = false;
AutofillExternalDelegate::OnPopupShown();
}
- virtual void OnPopupHidden() OVERRIDE {
+ virtual void OnPopupHidden() override {
popup_hidden_ = true;
if (message_loop_runner_.get())
@@ -71,7 +71,7 @@ class AutofillPopupControllerBrowserTest
AutofillPopupControllerBrowserTest() {}
virtual ~AutofillPopupControllerBrowserTest() {}
- virtual void SetUpOnMainThread() OVERRIDE {
+ virtual void SetUpOnMainThread() override {
content::WebContents* web_contents =
browser()->tab_strip_model()->GetActiveWebContents();
ASSERT_TRUE(web_contents != NULL);
@@ -88,7 +88,7 @@ class AutofillPopupControllerBrowserTest
// Normally the WebContents will automatically delete the delegate, but here
// the delegate is owned by this test, so we have to manually destroy.
- virtual void WebContentsDestroyed() OVERRIDE {
+ virtual void WebContentsDestroyed() override {
autofill_external_delegate_.reset();
}

Powered by Google App Engine
This is Rietveld 408576698