| Index: chrome/browser/chromeos/login/username_view.h
|
| diff --git a/chrome/browser/chromeos/login/username_view.h b/chrome/browser/chromeos/login/username_view.h
|
| index 5c5f3db48f3d2107d7cc9e0a7f1681b738925d24..46d1c571154f19d3eb964d7da8c9443c5580dac5 100644
|
| --- a/chrome/browser/chromeos/login/username_view.h
|
| +++ b/chrome/browser/chromeos/login/username_view.h
|
| @@ -1,4 +1,4 @@
|
| -// Copyright (c) 2010 The Chromium Authors. All rights reserved.
|
| +// Copyright (c) 2011 The Chromium Authors. All rights reserved.
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| @@ -37,7 +37,7 @@ class UsernameView : public views::Label {
|
| UsernameView(const std::wstring& username, bool use_small_shape);
|
|
|
| // Overriden from views::Label.
|
| - virtual void OnPaint(gfx::Canvas* canvas);
|
| + virtual void OnPaint(gfx::Canvas* canvas) OVERRIDE;
|
|
|
| // True indicates that this UsernameView is used for a user pod not
|
| // currently selected.
|
| @@ -45,10 +45,9 @@ class UsernameView : public views::Label {
|
|
|
| private:
|
| // Overriden from View.
|
| - virtual gfx::NativeCursor GetCursorForPoint(
|
| - ui::EventType event_type,
|
| - const gfx::Point& p);
|
| - virtual void OnLocaleChanged();
|
| + virtual gfx::NativeCursor GetCursorForPoint(ui::EventType event_type,
|
| + const gfx::Point& p) OVERRIDE;
|
| + virtual void OnLocaleChanged() OVERRIDE;
|
|
|
| // Paints username to the bitmap with the bounds given.
|
| void PaintUsername(const gfx::Rect& bounds);
|
|
|