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

Unified Diff: chrome/browser/ui/cocoa/profiles/user_manager_mac_unittest.mm

Issue 627043002: replace OVERRIDE and FINAL with override and final in chrome/browser/ui/[a-s]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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/ui/cocoa/profiles/user_manager_mac_unittest.mm
diff --git a/chrome/browser/ui/cocoa/profiles/user_manager_mac_unittest.mm b/chrome/browser/ui/cocoa/profiles/user_manager_mac_unittest.mm
index 9e988c2ecd5eb1659bd3e6df4e0a646902dfeb04..c33c1e935df0f718596f7a90160b599dbfe4bf24 100644
--- a/chrome/browser/ui/cocoa/profiles/user_manager_mac_unittest.mm
+++ b/chrome/browser/ui/cocoa/profiles/user_manager_mac_unittest.mm
@@ -17,7 +17,7 @@ class UserManagerMacTest : public BrowserWithTestWindowTest {
: testing_profile_manager_(TestingBrowserProcess::GetGlobal()) {
}
- virtual void SetUp() OVERRIDE {
+ virtual void SetUp() override {
BrowserWithTestWindowTest::SetUp();
ASSERT_TRUE(testing_profile_manager_.SetUp());
// Pre-load the guest profile so we don't have to wait for the User Manager
@@ -25,7 +25,7 @@ class UserManagerMacTest : public BrowserWithTestWindowTest {
testing_profile_manager_.CreateGuestProfile();
}
- virtual void TearDown() OVERRIDE {
+ virtual void TearDown() override {
testing_profile_manager_.DeleteGuestProfile();
TestingBrowserProcess::GetGlobal()->SetProfileManager(NULL);
base::RunLoop().RunUntilIdle();

Powered by Google App Engine
This is Rietveld 408576698