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

Unified Diff: chrome/browser/ui/autofill/autofill_popup_controller_unittest.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_unittest.cc
diff --git a/chrome/browser/ui/autofill/autofill_popup_controller_unittest.cc b/chrome/browser/ui/autofill/autofill_popup_controller_unittest.cc
index 4755ad4aeb43d7c7cd30188a3ad7c4e48185ac9d..4e7b48a1a134f0c9be342791c7d9f465c33f7fb9 100644
--- a/chrome/browser/ui/autofill/autofill_popup_controller_unittest.cc
+++ b/chrome/browser/ui/autofill/autofill_popup_controller_unittest.cc
@@ -44,10 +44,10 @@ class MockAutofillExternalDelegate : public AutofillExternalDelegate {
virtual ~MockAutofillExternalDelegate() {}
virtual void DidSelectSuggestion(const base::string16& value,
- int identifier) OVERRIDE {}
+ int identifier) override {}
virtual void RemoveSuggestion(const base::string16& value,
- int identifier) OVERRIDE {}
- virtual void ClearPreviewedForm() OVERRIDE {}
+ int identifier) override {}
+ virtual void ClearPreviewedForm() override {}
base::WeakPtr<AutofillExternalDelegate> GetWeakPtr() {
return AutofillExternalDelegate::GetWeakPtr();
}
@@ -58,7 +58,7 @@ class MockAutofillClient : public autofill::TestAutofillClient {
MockAutofillClient() : prefs_(autofill::test::PrefServiceForTesting()) {}
virtual ~MockAutofillClient() {}
- virtual PrefService* GetPrefs() OVERRIDE { return prefs_.get(); }
+ virtual PrefService* GetPrefs() override { return prefs_.get(); }
private:
scoped_ptr<PrefService> prefs_;
@@ -113,7 +113,7 @@ class TestAutofillPopupController : public AutofillPopupControllerImpl {
}
private:
- virtual void ShowView() OVERRIDE {}
+ virtual void ShowView() override {}
TestPopupControllerCommon* test_controller_common_;
};
@@ -127,7 +127,7 @@ class AutofillPopupControllerUnitTest : public ChromeRenderViewHostTestHarness {
autofill_popup_controller_(NULL) {}
virtual ~AutofillPopupControllerUnitTest() {}
- virtual void SetUp() OVERRIDE {
+ virtual void SetUp() override {
ChromeRenderViewHostTestHarness::SetUp();
ContentAutofillDriver::CreateForWebContentsAndDelegate(
@@ -147,7 +147,7 @@ class AutofillPopupControllerUnitTest : public ChromeRenderViewHostTestHarness {
external_delegate_->GetWeakPtr(),gfx::Rect());
}
- virtual void TearDown() OVERRIDE {
+ virtual void TearDown() override {
// This will make sure the controller and the view (if any) are both
// cleaned up.
if (autofill_popup_controller_)

Powered by Google App Engine
This is Rietveld 408576698