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

Unified Diff: chrome/browser/sync/sync_error_notifier_ash_unittest.cc

Issue 629603002: replace OVERRIDE and FINAL with override and final in chrome/browser/[r-z]* (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/sync/sync_error_notifier_ash_unittest.cc
diff --git a/chrome/browser/sync/sync_error_notifier_ash_unittest.cc b/chrome/browser/sync/sync_error_notifier_ash_unittest.cc
index 878df7c82825069e11e7251fdd728b8561591248..1b4f5e712cb008964e09b08eedf65bae3a1cb263 100644
--- a/chrome/browser/sync/sync_error_notifier_ash_unittest.cc
+++ b/chrome/browser/sync/sync_error_notifier_ash_unittest.cc
@@ -51,7 +51,7 @@ class ScreenTypeDelegateDesktop : public gfx::ScreenTypeDelegate {
ScreenTypeDelegateDesktop() {}
virtual ~ScreenTypeDelegateDesktop() {}
virtual gfx::ScreenType GetScreenTypeForNativeView(
- gfx::NativeView view) OVERRIDE {
+ gfx::NativeView view) override {
return chrome::IsNativeViewInAsh(view) ?
gfx::SCREEN_TYPE_ALTERNATE :
gfx::SCREEN_TYPE_NATIVE;
@@ -78,10 +78,10 @@ class FakeLoginUI : public LoginUIService::LoginUI {
private:
// LoginUIService::LoginUI:
- virtual void FocusUI() OVERRIDE {
+ virtual void FocusUI() override {
++focus_ui_call_count_;
}
- virtual void CloseUI() OVERRIDE {}
+ virtual void CloseUI() override {}
int focus_ui_call_count_;
};
@@ -96,7 +96,7 @@ class SyncErrorNotifierTest : public AshTestBase {
SyncErrorNotifierTest() {}
virtual ~SyncErrorNotifierTest() {}
- virtual void SetUp() OVERRIDE {
+ virtual void SetUp() override {
profile_manager_.reset(
new TestingProfileManager(TestingBrowserProcess::GetGlobal()));
ASSERT_TRUE(profile_manager_->SetUp());
@@ -128,7 +128,7 @@ class SyncErrorNotifierTest : public AshTestBase {
notification_ui_manager_ = g_browser_process->notification_ui_manager();
}
- virtual void TearDown() OVERRIDE {
+ virtual void TearDown() override {
error_notifier_->Shutdown();
service_.reset();
#if defined(OS_WIN)
« no previous file with comments | « chrome/browser/sync/sync_error_notifier_ash.cc ('k') | chrome/browser/sync/sync_error_notifier_factory_ash.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698