| Index: chrome/browser/ui/location_bar/origin_chip_info_unittest.cc
|
| diff --git a/chrome/browser/ui/location_bar/origin_chip_info_unittest.cc b/chrome/browser/ui/location_bar/origin_chip_info_unittest.cc
|
| index d91e9b10dc381a2bd76516c3b73aeb7ab79b5e14..f1eec2630fe11325beb8a201d32a4c706c400ee6 100644
|
| --- a/chrome/browser/ui/location_bar/origin_chip_info_unittest.cc
|
| +++ b/chrome/browser/ui/location_bar/origin_chip_info_unittest.cc
|
| @@ -52,7 +52,7 @@ class OriginChipInfoTest : public ChromeRenderViewHostTestHarness,
|
| EXPECT_EQ(expect_update, info_->Update(web_contents(), toolbar_model()));
|
| }
|
|
|
| - virtual void SetUp() OVERRIDE {
|
| + virtual void SetUp() override {
|
| ChromeRenderViewHostTestHarness::SetUp();
|
| #if defined(OS_CHROMEOS)
|
| test_user_manager_.reset(new chromeos::ScopedTestUserManager());
|
| @@ -61,7 +61,7 @@ class OriginChipInfoTest : public ChromeRenderViewHostTestHarness,
|
| info_.reset(new OriginChipInfo(this, profile()));
|
| }
|
|
|
| - virtual void TearDown() OVERRIDE {
|
| + virtual void TearDown() override {
|
| info_.reset();
|
| toolbar_model_.reset();
|
| #if defined(OS_CHROMEOS)
|
| @@ -71,7 +71,7 @@ class OriginChipInfoTest : public ChromeRenderViewHostTestHarness,
|
| }
|
|
|
| virtual void OnExtensionIconImageChanged(
|
| - extensions::IconImage* image) OVERRIDE {
|
| + extensions::IconImage* image) override {
|
| // We keep the value of |image| to check if it's set, but the actual value
|
| // is never used.
|
| icon_image_ = image;
|
|
|