summaryrefslogtreecommitdiffstats
path: root/views
diff options
context:
space:
mode:
authorcpu@chromium.org <cpu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-09-02 00:12:37 +0000
committercpu@chromium.org <cpu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-09-02 00:12:37 +0000
commit3c6aa3a788da02a2cf6f616c5ae20fdce5353dda (patch)
tree03a39e493e19a88b891ffabfabc9d7cb9704bfa0 /views
parent7f891c729c1993920d287efbb698af371205db56 (diff)
downloadchromium_src-3c6aa3a788da02a2cf6f616c5ae20fdce5353dda.zip
chromium_src-3c6aa3a788da02a2cf6f616c5ae20fdce5353dda.tar.gz
chromium_src-3c6aa3a788da02a2cf6f616c5ae20fdce5353dda.tar.bz2
Add avatar decoration to the windows7 taskbar
-So you can find your window without playing wack-a-mole. The change is windows 7 specific, because it is easy, we don't have to to create .ico files, manage them, jump to the file thread to read them etc. BUG=94808 TEST=see bug Review URL: http://codereview.chromium.org/7778025 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@99272 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'views')
-rw-r--r--views/controls/button/text_button.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/views/controls/button/text_button.h b/views/controls/button/text_button.h
index 3373bc5..ba8568d 100644
--- a/views/controls/button/text_button.h
+++ b/views/controls/button/text_button.h
@@ -327,9 +327,9 @@ class VIEWS_EXPORT TextButton : public TextButtonBase {
}
// Sets the icon.
- void SetIcon(const SkBitmap& icon);
- void SetHoverIcon(const SkBitmap& icon);
- void SetPushedIcon(const SkBitmap& icon);
+ virtual void SetIcon(const SkBitmap& icon);
+ virtual void SetHoverIcon(const SkBitmap& icon);
+ virtual void SetPushedIcon(const SkBitmap& icon);
bool HasIcon() const { return !icon_.empty(); }