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

Unified Diff: chrome/browser/profiles/profile_destroyer_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
« no previous file with comments | « chrome/browser/profiles/profile_destroyer.h ('k') | chrome/browser/profiles/profile_downloader.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/profiles/profile_destroyer_unittest.cc
diff --git a/chrome/browser/profiles/profile_destroyer_unittest.cc b/chrome/browser/profiles/profile_destroyer_unittest.cc
index 497658439cc3e74058cd03201f20cf1d9573339a..d40104177775d03531e580ac7e449fefbd83e457 100644
--- a/chrome/browser/profiles/profile_destroyer_unittest.cc
+++ b/chrome/browser/profiles/profile_destroyer_unittest.cc
@@ -21,7 +21,7 @@ class TestingOffTheRecordDestructionProfile : public TestingProfile {
destroyed_otr_profile_(false) {
set_incognito(true);
}
- virtual void DestroyOffTheRecordProfile() OVERRIDE {
+ virtual void DestroyOffTheRecordProfile() override {
destroyed_otr_profile_ = true;
}
bool destroyed_otr_profile_;
@@ -39,7 +39,7 @@ class TestingOriginalDestructionProfile : public TestingProfile {
DCHECK_EQ(this, living_instance_);
living_instance_ = NULL;
}
- virtual void DestroyOffTheRecordProfile() OVERRIDE {
+ virtual void DestroyOffTheRecordProfile() override {
SetOffTheRecordProfile(NULL);
destroyed_otr_profile_ = true;
}
@@ -62,7 +62,7 @@ class ProfileDestroyerTest : public BrowserWithTestWindowTest {
ProfileDestroyerTest() : off_the_record_profile_(NULL) {}
protected:
- virtual TestingProfile* CreateProfile() OVERRIDE {
+ virtual TestingProfile* CreateProfile() override {
if (off_the_record_profile_ == NULL)
off_the_record_profile_ = new TestingOffTheRecordDestructionProfile();
return off_the_record_profile_;
« no previous file with comments | « chrome/browser/profiles/profile_destroyer.h ('k') | chrome/browser/profiles/profile_downloader.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698