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

Unified Diff: ash/shelf/shelf_button.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/shelf/shelf_button.h ('k') | ash/shelf/shelf_item_delegate_manager.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/shelf/shelf_button.cc
diff --git a/ash/shelf/shelf_button.cc b/ash/shelf/shelf_button.cc
index 1aba1ccb4357845983fbcfcb45079b0171686eca..98e6ec7d7dff4417d7013acfbbc4fa525dd47469 100644
--- a/ash/shelf/shelf_button.cc
+++ b/ash/shelf/shelf_button.cc
@@ -89,7 +89,7 @@ class ShelfButtonAnimation : public gfx::AnimationDelegate {
}
// gfx::AnimationDelegate
- virtual void AnimationProgressed(const gfx::Animation* animation) OVERRIDE {
+ virtual void AnimationProgressed(const gfx::Animation* animation) override {
if (animation != &animation_)
return;
if (!animation_.is_animating())
@@ -126,7 +126,7 @@ class ShelfButton::BarView : public views::ImageView,
}
// views::View:
- virtual void OnPaint(gfx::Canvas* canvas) OVERRIDE {
+ virtual void OnPaint(gfx::Canvas* canvas) override {
if (show_attention_) {
int alpha = ShelfButtonAnimation::GetInstance()->GetAlpha();
canvas->SaveLayerAlpha(alpha);
@@ -138,7 +138,7 @@ class ShelfButton::BarView : public views::ImageView,
}
// ShelfButtonAnimation::Observer
- virtual void AnimationProgressed() OVERRIDE {
+ virtual void AnimationProgressed() override {
UpdateBounds();
SchedulePaint();
}
« no previous file with comments | « ash/shelf/shelf_button.h ('k') | ash/shelf/shelf_item_delegate_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698