Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(379)

Unified Diff: chrome/browser/profiles/off_the_record_profile_impl_unittest.cc

Issue 624173002: replace OVERRIDE and FINAL with override and final in chrome/browser/[j-q]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on master Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;
}
« no previous file with comments | « chrome/browser/profiles/off_the_record_profile_impl.cc ('k') | chrome/browser/profiles/off_the_record_profile_io_data.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698