Chromium Code Reviews| Index: views/controls/link.h |
| diff --git a/views/controls/link.h b/views/controls/link.h |
| index 79a940f140b66ffcee24e510dc0d95aeeb808ac9..d0197ad10d9ac19a017fc01a64728a2485e9edfb 100644 |
| --- a/views/controls/link.h |
| +++ b/views/controls/link.h |
| @@ -44,12 +44,12 @@ class Link : public Label { |
| virtual void SetFont(const gfx::Font& font) OVERRIDE; |
| // Set whether the link is enabled. |
| - virtual void SetEnabled(bool f); |
| + virtual void SetEnabled(bool flag) OVERRIDE; |
|
Peter Kasting
2011/04/27 00:22:12
Nit: |flag | is better than |f|. |enabled| might
msw
2011/04/27 01:58:03
I'm following the base definition; I think that's
|
| virtual gfx::NativeCursor GetCursorForPoint(ui::EventType event_type, |
| - const gfx::Point& p); |
| + const gfx::Point& p) OVERRIDE; |
| - virtual std::string GetClassName() const; |
| + virtual std::string GetClassName() const OVERRIDE; |
| void SetHighlightedColor(const SkColor& color); |
| void SetDisabledColor(const SkColor& color); |