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 9bb689a66256b75941e1a20199f899d62e2e1072..4040a71aab7e9904ea213f57892fb46e0edb0ee5 100644 |
--- a/chrome/browser/profiles/off_the_record_profile_impl_unittest.cc |
+++ b/chrome/browser/profiles/off_the_record_profile_impl_unittest.cc |
@@ -37,12 +37,10 @@ class TestingProfileWithHostZoomMap : public TestingProfile { |
zoom_level_prefs_->InitPrefsAndCopyToHostZoomMap(GetPath(), host_zoom_map); |
} |
- virtual ~TestingProfileWithHostZoomMap() {} |
+ ~TestingProfileWithHostZoomMap() override {} |
// Profile overrides: |
- virtual PrefService* GetOffTheRecordPrefs() override { |
- return GetPrefs(); |
- } |
+ PrefService* GetOffTheRecordPrefs() override { return GetPrefs(); } |
private: |
void OnZoomLevelChanged(const HostZoomMap::ZoomLevelChange& change) { |
@@ -104,7 +102,7 @@ class OffTheRecordProfileImplTest : public BrowserWithTestWindowTest { |
} |
// BrowserWithTestWindowTest overrides: |
- virtual TestingProfile* CreateProfile() override { |
+ TestingProfile* CreateProfile() override { |
return new TestingProfileWithHostZoomMap; |
} |