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

Unified Diff: ash/shelf/shelf_widget.cc

Issue 12813004: Chromium style checker cleanup (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased Created 7 years, 9 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 | « no previous file | cc/layer_tree_host_unittest_delegated.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/shelf/shelf_widget.cc
diff --git a/ash/shelf/shelf_widget.cc b/ash/shelf/shelf_widget.cc
index 74dfb5c88eab7ba3d8f95b36d553f13c027cc46f..f9d324e50ce44018fdf4e0cecb4190733644099f 100644
--- a/ash/shelf/shelf_widget.cc
+++ b/ash/shelf/shelf_widget.cc
@@ -69,21 +69,21 @@ class ShelfWidget::DelegateView : public views::WidgetDelegate,
bool GetDimmed() const { return dimmed_; }
// views::View overrides:
- void OnPaintBackground(gfx::Canvas* canvas) OVERRIDE;
+ virtual void OnPaintBackground(gfx::Canvas* canvas) OVERRIDE;
// views::WidgetDelegateView overrides:
- views::Widget* GetWidget() OVERRIDE {
+ virtual views::Widget* GetWidget() OVERRIDE {
return View::GetWidget();
}
- const views::Widget* GetWidget() const OVERRIDE {
+ virtual const views::Widget* GetWidget() const OVERRIDE {
return View::GetWidget();
}
- bool CanActivate() const OVERRIDE;
- void Layout() OVERRIDE;
+ virtual bool CanActivate() const OVERRIDE;
+ virtual void Layout() OVERRIDE;
// BackgroundAnimatorDelegate overrides:
- void UpdateBackground(int alpha) OVERRIDE;
+ virtual void UpdateBackground(int alpha) OVERRIDE;
private:
ShelfWidget* shelf_;
« no previous file with comments | « no previous file | cc/layer_tree_host_unittest_delegated.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698