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

Side by Side Diff: chrome/browser/autofill/autofill_cc_infobar_delegate_unittest.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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/autofill/autofill_cc_infobar_delegate.h" 5 #include "chrome/browser/autofill/autofill_cc_infobar_delegate.h"
6 6
7 #include "base/memory/scoped_ptr.h" 7 #include "base/memory/scoped_ptr.h"
8 #include "chrome/browser/autofill/personal_data_manager_factory.h" 8 #include "chrome/browser/autofill/personal_data_manager_factory.h"
9 #include "chrome/browser/ui/autofill/chrome_autofill_client.h" 9 #include "chrome/browser/ui/autofill/chrome_autofill_client.h"
10 #include "chrome/test/base/chrome_render_view_host_test_harness.h" 10 #include "chrome/test/base/chrome_render_view_host_test_harness.h"
(...skipping 20 matching lines...) Expand all
31 }; 31 };
32 32
33 class TestPersonalDataManager : public PersonalDataManager { 33 class TestPersonalDataManager : public PersonalDataManager {
34 public: 34 public:
35 TestPersonalDataManager() : PersonalDataManager("en-US") {} 35 TestPersonalDataManager() : PersonalDataManager("en-US") {}
36 36
37 using PersonalDataManager::set_database; 37 using PersonalDataManager::set_database;
38 using PersonalDataManager::SetPrefService; 38 using PersonalDataManager::SetPrefService;
39 39
40 // Overridden to avoid a trip to the database. 40 // Overridden to avoid a trip to the database.
41 virtual void LoadProfiles() OVERRIDE {} 41 virtual void LoadProfiles() override {}
42 virtual void LoadCreditCards() OVERRIDE {} 42 virtual void LoadCreditCards() override {}
43 43
44 MOCK_METHOD1(SaveImportedCreditCard, 44 MOCK_METHOD1(SaveImportedCreditCard,
45 std::string(const CreditCard& imported_credit_card)); 45 std::string(const CreditCard& imported_credit_card));
46 46
47 private: 47 private:
48 DISALLOW_COPY_AND_ASSIGN(TestPersonalDataManager); 48 DISALLOW_COPY_AND_ASSIGN(TestPersonalDataManager);
49 }; 49 };
50 50
51 } // namespace 51 } // namespace
52 52
53 class AutofillCCInfobarDelegateTest : public ChromeRenderViewHostTestHarness { 53 class AutofillCCInfobarDelegateTest : public ChromeRenderViewHostTestHarness {
54 public: 54 public:
55 virtual ~AutofillCCInfobarDelegateTest(); 55 virtual ~AutofillCCInfobarDelegateTest();
56 56
57 virtual void SetUp() OVERRIDE; 57 virtual void SetUp() override;
58 virtual void TearDown() OVERRIDE; 58 virtual void TearDown() override;
59 59
60 protected: 60 protected:
61 scoped_ptr<ConfirmInfoBarDelegate> CreateDelegate( 61 scoped_ptr<ConfirmInfoBarDelegate> CreateDelegate(
62 MockAutofillMetrics* metric_logger); 62 MockAutofillMetrics* metric_logger);
63 63
64 scoped_ptr<TestPersonalDataManager> personal_data_; 64 scoped_ptr<TestPersonalDataManager> personal_data_;
65 }; 65 };
66 66
67 AutofillCCInfobarDelegateTest::~AutofillCCInfobarDelegateTest() {} 67 AutofillCCInfobarDelegateTest::~AutofillCCInfobarDelegateTest() {}
68 68
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
152 { 152 {
153 scoped_ptr<ConfirmInfoBarDelegate> infobar(CreateDelegate(&metric_logger)); 153 scoped_ptr<ConfirmInfoBarDelegate> infobar(CreateDelegate(&metric_logger));
154 ASSERT_TRUE(infobar); 154 ASSERT_TRUE(infobar);
155 EXPECT_CALL(metric_logger, 155 EXPECT_CALL(metric_logger,
156 LogCreditCardInfoBarMetric(AutofillMetrics::INFOBAR_IGNORED)) 156 LogCreditCardInfoBarMetric(AutofillMetrics::INFOBAR_IGNORED))
157 .Times(1); 157 .Times(1);
158 } 158 }
159 } 159 }
160 160
161 } // namespace autofill 161 } // namespace autofill
OLDNEW
« no previous file with comments | « chrome/browser/autofill/autofill_cc_infobar_delegate.h ('k') | chrome/browser/autofill/autofill_interactive_uitest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698