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

Unified Diff: ash/system/web_notification/web_notification_tray_unittest.cc

Issue 621133002: replace OVERRIDE and FINAL with override and final in ash/ (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: ash/system/web_notification/web_notification_tray_unittest.cc
diff --git a/ash/system/web_notification/web_notification_tray_unittest.cc b/ash/system/web_notification/web_notification_tray_unittest.cc
index 02f0d7f2e5489c56a74d7c7e99e769d31f8c2f05..5fa566129f25667ed643d69094fd8880934f6916 100644
--- a/ash/system/web_notification/web_notification_tray_unittest.cc
+++ b/ash/system/web_notification/web_notification_tray_unittest.cc
@@ -72,7 +72,7 @@ class TestItem : public SystemTrayItem {
public:
TestItem() : SystemTrayItem(GetSystemTray()) {}
- virtual views::View* CreateDefaultView(user::LoginStatus status) OVERRIDE {
+ virtual views::View* CreateDefaultView(user::LoginStatus status) override {
views::View* default_view = new views::View;
default_view->SetLayoutManager(new views::FillLayout);
default_view->AddChildView(new views::Label(base::UTF8ToUTF16("Default")));
@@ -80,7 +80,7 @@ class TestItem : public SystemTrayItem {
}
virtual views::View* CreateNotificationView(
- user::LoginStatus status) OVERRIDE {
+ user::LoginStatus status) override {
return new views::View;
}
@@ -95,13 +95,13 @@ class WebNotificationTrayTest : public test::AshTestBase {
WebNotificationTrayTest() {}
virtual ~WebNotificationTrayTest() {}
- virtual void SetUp() OVERRIDE {
+ virtual void SetUp() override {
CommandLine::ForCurrentProcess()->AppendSwitch(
switches::kEnableTouchFeedback);
test::AshTestBase::SetUp();
}
- virtual void TearDown() OVERRIDE {
+ virtual void TearDown() override {
GetMessageCenter()->RemoveAllNotifications(false);
test::AshTestBase::TearDown();
}
« no previous file with comments | « ash/system/web_notification/web_notification_tray.cc ('k') | ash/system/win/audio/tray_audio_delegate_win.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698