summaryrefslogtreecommitdiffstats
path: root/chrome/browser/ui/autofill
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/ui/autofill')
-rw-r--r--chrome/browser/ui/autofill/autofill_dialog_controller_browsertest.cc2
-rw-r--r--chrome/browser/ui/autofill/autofill_dialog_controller_unittest.cc4
-rw-r--r--chrome/browser/ui/autofill/autofill_popup_controller_interactive_uitest.cc2
-rw-r--r--chrome/browser/ui/autofill/autofill_popup_controller_unittest.cc6
-rw-r--r--chrome/browser/ui/autofill/generated_credit_card_bubble_controller_unittest.cc2
-rw-r--r--chrome/browser/ui/autofill/popup_controller_common_unittest.cc2
6 files changed, 9 insertions, 9 deletions
diff --git a/chrome/browser/ui/autofill/autofill_dialog_controller_browsertest.cc b/chrome/browser/ui/autofill/autofill_dialog_controller_browsertest.cc
index 14a488f..37d99bf 100644
--- a/chrome/browser/ui/autofill/autofill_dialog_controller_browsertest.cc
+++ b/chrome/browser/ui/autofill/autofill_dialog_controller_browsertest.cc
@@ -1503,7 +1503,7 @@ class AutofillDialogControllerSecurityTest :
public AutofillDialogControllerTest {
public:
AutofillDialogControllerSecurityTest() {}
- virtual ~AutofillDialogControllerSecurityTest() {}
+ ~AutofillDialogControllerSecurityTest() override {}
void SetUpCommandLine(CommandLine* command_line) override {
CHECK(!command_line->HasSwitch(::switches::kReduceSecurityForTesting));
diff --git a/chrome/browser/ui/autofill/autofill_dialog_controller_unittest.cc b/chrome/browser/ui/autofill/autofill_dialog_controller_unittest.cc
index c13d159..1d4e4d1 100644
--- a/chrome/browser/ui/autofill/autofill_dialog_controller_unittest.cc
+++ b/chrome/browser/ui/autofill/autofill_dialog_controller_unittest.cc
@@ -401,12 +401,12 @@ class AutofillDialogControllerTest : public ChromeRenderViewHostTestHarness {
AutofillDialogControllerTest(): form_structure_(NULL) {}
// testing::Test implementation:
- virtual void SetUp() override {
+ void SetUp() override {
ChromeRenderViewHostTestHarness::SetUp();
Reset();
}
- virtual void TearDown() override {
+ void TearDown() override {
if (controller_)
controller_->ViewClosed();
ChromeRenderViewHostTestHarness::TearDown();
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 a55168b..3d5a686 100644
--- a/chrome/browser/ui/autofill/autofill_popup_controller_interactive_uitest.cc
+++ b/chrome/browser/ui/autofill/autofill_popup_controller_interactive_uitest.cc
@@ -69,7 +69,7 @@ class AutofillPopupControllerBrowserTest
public content::WebContentsObserver {
public:
AutofillPopupControllerBrowserTest() {}
- virtual ~AutofillPopupControllerBrowserTest() {}
+ ~AutofillPopupControllerBrowserTest() override {}
void SetUpOnMainThread() override {
content::WebContents* web_contents =
diff --git a/chrome/browser/ui/autofill/autofill_popup_controller_unittest.cc b/chrome/browser/ui/autofill/autofill_popup_controller_unittest.cc
index a29be41..fef22be 100644
--- a/chrome/browser/ui/autofill/autofill_popup_controller_unittest.cc
+++ b/chrome/browser/ui/autofill/autofill_popup_controller_unittest.cc
@@ -124,9 +124,9 @@ class AutofillPopupControllerUnitTest : public ChromeRenderViewHostTestHarness {
AutofillPopupControllerUnitTest()
: autofill_client_(new MockAutofillClient()),
autofill_popup_controller_(NULL) {}
- virtual ~AutofillPopupControllerUnitTest() {}
+ ~AutofillPopupControllerUnitTest() override {}
- virtual void SetUp() override {
+ void SetUp() override {
ChromeRenderViewHostTestHarness::SetUp();
ContentAutofillDriver::CreateForWebContentsAndDelegate(
@@ -146,7 +146,7 @@ class AutofillPopupControllerUnitTest : public ChromeRenderViewHostTestHarness {
external_delegate_->GetWeakPtr(),gfx::Rect());
}
- virtual void TearDown() override {
+ void TearDown() override {
// This will make sure the controller and the view (if any) are both
// cleaned up.
if (autofill_popup_controller_)
diff --git a/chrome/browser/ui/autofill/generated_credit_card_bubble_controller_unittest.cc b/chrome/browser/ui/autofill/generated_credit_card_bubble_controller_unittest.cc
index 6508a65..7454e2a 100644
--- a/chrome/browser/ui/autofill/generated_credit_card_bubble_controller_unittest.cc
+++ b/chrome/browser/ui/autofill/generated_credit_card_bubble_controller_unittest.cc
@@ -50,7 +50,7 @@ class GeneratedCreditCardBubbleControllerTest : public testing::Test {
content::WebContentsTester::CreateTestWebContents(
&profile_, NULL)) {}
- virtual void SetUp() override {
+ void SetUp() override {
// Attaches immediately to |test_web_contents_| so a test version will exist
// before a non-test version can be created.
new TestGeneratedCreditCardBubbleController(test_web_contents_.get());
diff --git a/chrome/browser/ui/autofill/popup_controller_common_unittest.cc b/chrome/browser/ui/autofill/popup_controller_common_unittest.cc
index 576d055..0319b07 100644
--- a/chrome/browser/ui/autofill/popup_controller_common_unittest.cc
+++ b/chrome/browser/ui/autofill/popup_controller_common_unittest.cc
@@ -15,7 +15,7 @@ namespace autofill {
class PopupControllerBaseTest : public ChromeRenderViewHostTestHarness {
public:
PopupControllerBaseTest() {}
- virtual ~PopupControllerBaseTest() {}
+ ~PopupControllerBaseTest() override {}
private:
DISALLOW_COPY_AND_ASSIGN(PopupControllerBaseTest);