diff options
author | koz@chromium.org <koz@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-02-27 05:17:47 +0000 |
---|---|---|
committer | koz@chromium.org <koz@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-02-27 05:17:47 +0000 |
commit | 48164f956d68e19019f76e97688a21e4fcd9b564 (patch) | |
tree | a016efcbc606ce608e0cdd18b9dd638aab811162 /ui/app_list/search_box_model_observer.h | |
parent | 79dc4cebcc1bc19cf175f3254cfd79f1af233aa3 (diff) | |
download | chromium_src-48164f956d68e19019f76e97688a21e4fcd9b564.zip chromium_src-48164f956d68e19019f76e97688a21e4fcd9b564.tar.gz chromium_src-48164f956d68e19019f76e97688a21e4fcd9b564.tar.bz2 |
Add an icon to the app list to indicate the current profile.
This icon is only visible on Windows and if there is more than one profile
available.
BUG=174799
Review URL: https://chromiumcodereview.appspot.com/12328002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@184880 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ui/app_list/search_box_model_observer.h')
-rw-r--r-- | ui/app_list/search_box_model_observer.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/ui/app_list/search_box_model_observer.h b/ui/app_list/search_box_model_observer.h index b4cc40c..eb9d22c 100644 --- a/ui/app_list/search_box_model_observer.h +++ b/ui/app_list/search_box_model_observer.h @@ -23,6 +23,15 @@ class APP_LIST_EXPORT SearchBoxModelObserver { // Invoked when text is changed. virtual void TextChanged() = 0; + // Invoked when user icon is changed. + virtual void UserIconChanged() = 0; + + // Invoked when text is changed. + virtual void UserIconTooltipChanged() = 0; + + // Invoked when text is changed. + virtual void UserIconEnabledChanged() = 0; + protected: virtual ~SearchBoxModelObserver() {} }; |