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

Unified Diff: ash/system/tray/system_tray_bubble.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/system/tray/system_tray.h ('k') | ash/system/tray/system_tray_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/system/tray/system_tray_bubble.cc
diff --git a/ash/system/tray/system_tray_bubble.cc b/ash/system/tray/system_tray_bubble.cc
index cea360bf778b358db43937b9c55fc428e813aaec..97500df434d28b10365407ba7e812db55c5bd558 100644
--- a/ash/system/tray/system_tray_bubble.cc
+++ b/ash/system/tray/system_tray_bubble.cc
@@ -66,28 +66,28 @@ class TrayPopupItemContainer : public views::View {
private:
// Overridden from views::View.
- virtual void ChildVisibilityChanged(View* child) OVERRIDE {
+ virtual void ChildVisibilityChanged(View* child) override {
if (visible() == child->visible())
return;
SetVisible(child->visible());
PreferredSizeChanged();
}
- virtual void ChildPreferredSizeChanged(View* child) OVERRIDE {
+ virtual void ChildPreferredSizeChanged(View* child) override {
PreferredSizeChanged();
}
- virtual void OnMouseEntered(const ui::MouseEvent& event) OVERRIDE {
+ virtual void OnMouseEntered(const ui::MouseEvent& event) override {
hover_ = true;
SchedulePaint();
}
- virtual void OnMouseExited(const ui::MouseEvent& event) OVERRIDE {
+ virtual void OnMouseExited(const ui::MouseEvent& event) override {
hover_ = false;
SchedulePaint();
}
- virtual void OnPaintBackground(gfx::Canvas* canvas) OVERRIDE {
+ virtual void OnPaintBackground(gfx::Canvas* canvas) override {
if (child_count() == 0)
return;
@@ -115,7 +115,7 @@ class AnimationObserverDeleteLayer : public ui::ImplicitAnimationObserver {
virtual ~AnimationObserverDeleteLayer() {
}
- virtual void OnImplicitAnimationsCompleted() OVERRIDE {
+ virtual void OnImplicitAnimationsCompleted() override {
base::MessageLoopForUI::current()->DeleteSoon(FROM_HERE, this);
}
« no previous file with comments | « ash/system/tray/system_tray.h ('k') | ash/system/tray/system_tray_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698