Index: chrome/browser/profiles/off_the_record_profile_impl_unittest.cc |
diff --git a/chrome/browser/profiles/off_the_record_profile_impl_unittest.cc b/chrome/browser/profiles/off_the_record_profile_impl_unittest.cc |
index 62a79789d5d1a92b4eabfcac8c81f8430e932849..521bc75b3e15ff80c1b6944cdf7210f5e00b0a88 100644 |
--- a/chrome/browser/profiles/off_the_record_profile_impl_unittest.cc |
+++ b/chrome/browser/profiles/off_the_record_profile_impl_unittest.cc |
@@ -37,7 +37,7 @@ class TestingProfileWithHostZoomMap : public TestingProfile { |
virtual ~TestingProfileWithHostZoomMap() {} |
// Profile overrides: |
- virtual PrefService* GetOffTheRecordPrefs() OVERRIDE { |
+ virtual PrefService* GetOffTheRecordPrefs() override { |
return GetPrefs(); |
} |
@@ -77,7 +77,7 @@ class OffTheRecordProfileImplTest : public BrowserWithTestWindowTest { |
virtual ~OffTheRecordProfileImplTest() {} |
// testing::Test overrides: |
- virtual void SetUp() OVERRIDE { |
+ virtual void SetUp() override { |
profile_manager_.reset(new TestingProfileManager(browser_process())); |
ASSERT_TRUE(profile_manager_->SetUp()); |
@@ -88,7 +88,7 @@ class OffTheRecordProfileImplTest : public BrowserWithTestWindowTest { |
BrowserWithTestWindowTest::SetUp(); |
} |
- virtual void TearDown() OVERRIDE { |
+ virtual void TearDown() override { |
BrowserWithTestWindowTest::TearDown(); |
testing_io_thread_state_.reset(); |
@@ -97,7 +97,7 @@ class OffTheRecordProfileImplTest : public BrowserWithTestWindowTest { |
} |
// BrowserWithTestWindowTest overrides: |
- virtual TestingProfile* CreateProfile() OVERRIDE { |
+ virtual TestingProfile* CreateProfile() override { |
return new TestingProfileWithHostZoomMap; |
} |