OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_BROWSER_UI_VIEWS_PROFILES_NEW_AVATAR_BUTTON_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_PROFILES_NEW_AVATAR_BUTTON_H_ |
6 #define CHROME_BROWSER_UI_VIEWS_PROFILES_NEW_AVATAR_BUTTON_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_PROFILES_NEW_AVATAR_BUTTON_H_ |
7 | 7 |
8 #include "chrome/browser/profiles/profile_info_cache_observer.h" | 8 #include "chrome/browser/profiles/profile_info_cache_observer.h" |
9 #include "components/signin/core/browser/signin_error_controller.h" | 9 #include "components/signin/core/browser/signin_error_controller.h" |
10 #include "ui/views/controls/button/menu_button.h" | 10 #include "ui/views/controls/button/label_button.h" |
11 | 11 |
12 class Browser; | 12 class Browser; |
13 | 13 |
14 // Avatar button that displays the active profile's name in the caption area. | 14 // Avatar button that displays the active profile's name in the caption area. |
15 class NewAvatarButton : public views::MenuButton, | 15 class NewAvatarButton : public views::LabelButton, |
16 public ProfileInfoCacheObserver, | 16 public ProfileInfoCacheObserver, |
17 public SigninErrorController::Observer { | 17 public SigninErrorController::Observer { |
18 public: | 18 public: |
19 // Different button styles that can be applied. | 19 // Different button styles that can be applied. |
20 enum AvatarButtonStyle { | 20 enum AvatarButtonStyle { |
21 THEMED_BUTTON, // Used in a themed browser window. | 21 THEMED_BUTTON, // Used in a themed browser window. |
22 NATIVE_BUTTON, // Used in a native aero or metro window. | 22 NATIVE_BUTTON, // Used in a native aero or metro window. |
23 }; | 23 }; |
24 | 24 |
25 NewAvatarButton(views::ButtonListener* listener, | 25 NewAvatarButton(views::ButtonListener* listener, |
26 const base::string16& profile_name, | |
27 AvatarButtonStyle button_style, | 26 AvatarButtonStyle button_style, |
28 Browser* browser); | 27 Browser* browser); |
29 virtual ~NewAvatarButton(); | 28 virtual ~NewAvatarButton(); |
30 | 29 |
31 // Views::MenuButton | 30 // Views::LabelButton |
32 virtual bool OnMousePressed(const ui::MouseEvent& event) OVERRIDE; | 31 virtual bool OnMousePressed(const ui::MouseEvent& event) OVERRIDE; |
33 virtual void OnMouseReleased(const ui::MouseEvent& event) OVERRIDE; | 32 virtual void OnMouseReleased(const ui::MouseEvent& event) OVERRIDE; |
34 | 33 |
35 private: | 34 private: |
36 friend class NewAvatarMenuButtonTest; | 35 friend class NewAvatarMenuButtonTest; |
37 friend class ProfileChooserViewBrowserTest; | 36 friend class ProfileChooserViewBrowserTest; |
38 FRIEND_TEST_ALL_PREFIXES(NewAvatarMenuButtonTest, SignOut); | 37 FRIEND_TEST_ALL_PREFIXES(NewAvatarMenuButtonTest, SignOut); |
39 FRIEND_TEST_ALL_PREFIXES(ProfileChooserViewBrowserTest, ViewProfileUMA); | 38 FRIEND_TEST_ALL_PREFIXES(ProfileChooserViewBrowserTest, ViewProfileUMA); |
40 | 39 |
41 // ProfileInfoCacheObserver: | 40 // ProfileInfoCacheObserver: |
42 virtual void OnProfileAdded(const base::FilePath& profile_path) OVERRIDE; | 41 virtual void OnProfileAdded(const base::FilePath& profile_path) OVERRIDE; |
43 virtual void OnProfileWasRemoved( | 42 virtual void OnProfileWasRemoved( |
44 const base::FilePath& profile_path, | 43 const base::FilePath& profile_path, |
45 const base::string16& profile_name) OVERRIDE; | 44 const base::string16& profile_name) OVERRIDE; |
46 virtual void OnProfileNameChanged( | 45 virtual void OnProfileNameChanged( |
47 const base::FilePath& profile_path, | 46 const base::FilePath& profile_path, |
48 const base::string16& old_profile_name) OVERRIDE; | 47 const base::string16& old_profile_name) OVERRIDE; |
49 virtual void OnProfileAvatarChanged( | 48 virtual void OnProfileAvatarChanged( |
50 const base::FilePath& profile_path) OVERRIDE; | 49 const base::FilePath& profile_path) OVERRIDE; |
51 virtual void OnProfileSupervisedUserIdChanged( | 50 virtual void OnProfileSupervisedUserIdChanged( |
52 const base::FilePath& profile_path) OVERRIDE; | 51 const base::FilePath& profile_path) OVERRIDE; |
53 | 52 |
54 // SigninErrorController::Observer: | 53 // SigninErrorController::Observer: |
55 virtual void OnErrorChanged() OVERRIDE; | 54 virtual void OnErrorChanged() OVERRIDE; |
56 | 55 |
57 // Called when the profile info cache has changed, which means we might | 56 // Called when the profile info cache has changed, which means we might |
58 // have to re-display the profile name. | 57 // have to update the icon/text of the button. |
59 void UpdateAvatarButtonAndRelayoutParent(); | 58 void UpdateAvatarButtonAndRelayoutParent(); |
60 | 59 |
61 Browser* browser_; | 60 Browser* browser_; |
62 | 61 |
| 62 // Whether the signed in profile has an authentication error. Used to display |
| 63 // an error icon next to the button text. |
| 64 bool has_auth_error_; |
| 65 |
| 66 // The icon displayed instead of the profile name in the local profile case. |
| 67 // Different assets are used depending on the OS version. |
| 68 gfx::ImageSkia generic_avatar_; |
| 69 |
63 // This is used to check if the bubble was showing during the mouse pressed | 70 // This is used to check if the bubble was showing during the mouse pressed |
64 // event. If this is true then the mouse released event is ignored to prevent | 71 // event. If this is true then the mouse released event is ignored to prevent |
65 // the bubble from reshowing. | 72 // the bubble from reshowing. |
66 bool suppress_mouse_released_action_; | 73 bool suppress_mouse_released_action_; |
67 | 74 |
68 DISALLOW_COPY_AND_ASSIGN(NewAvatarButton); | 75 DISALLOW_COPY_AND_ASSIGN(NewAvatarButton); |
69 }; | 76 }; |
70 | 77 |
71 #endif // CHROME_BROWSER_UI_VIEWS_PROFILES_NEW_AVATAR_BUTTON_H_ | 78 #endif // CHROME_BROWSER_UI_VIEWS_PROFILES_NEW_AVATAR_BUTTON_H_ |
OLD | NEW |