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

Unified Diff: ash/first_run/desktop_cleaner.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
« no previous file with comments | « ash/extended_desktop_unittest.cc ('k') | ash/first_run/first_run_helper_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/first_run/desktop_cleaner.cc
diff --git a/ash/first_run/desktop_cleaner.cc b/ash/first_run/desktop_cleaner.cc
index d388e18f33e1a56c49e26308bf70e1dd1dd8e908..6f0dfb114adbb38a1c759f35ec371786d90ed066 100644
--- a/ash/first_run/desktop_cleaner.cc
+++ b/ash/first_run/desktop_cleaner.cc
@@ -57,12 +57,12 @@ class ContainerHider : public aura::WindowObserver,
private:
// Overriden from ui::ImplicitAnimationObserver.
- virtual void OnImplicitAnimationsCompleted() OVERRIDE {
+ virtual void OnImplicitAnimationsCompleted() override {
container_->Hide();
}
// Overriden from aura::WindowObserver.
- virtual void OnWindowDestroying(aura::Window* window) OVERRIDE {
+ virtual void OnWindowDestroying(aura::Window* window) override {
DCHECK(window == container_);
container_ = NULL;
}
@@ -86,7 +86,7 @@ class NotificationBlocker : public message_center::NotificationBlocker {
private:
// Overriden from message_center::NotificationBlocker.
virtual bool ShouldShowNotificationAsPopup(
- const message_center::NotifierId& notifier_id) const OVERRIDE {
+ const message_center::NotifierId& notifier_id) const override {
return false;
}
« no previous file with comments | « ash/extended_desktop_unittest.cc ('k') | ash/first_run/first_run_helper_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698