| 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 a29be41d51b30355695801d45a19d827edfcedba..fef22bea0c5f15cc2a3d1d93b02f01db5fab1145 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_)
|
|
|