| 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 "base/macros.h" | 8 #include "base/macros.h" |
| 9 #include "chrome/browser/profiles/profile_info_cache_observer.h" | 9 #include "chrome/browser/profiles/profile_attributes_storage.h" |
| 10 #include "chrome/browser/ui/views/profiles/avatar_button_style.h" | 10 #include "chrome/browser/ui/views/profiles/avatar_button_style.h" |
| 11 #include "components/signin/core/browser/signin_error_controller.h" | 11 #include "components/signin/core/browser/signin_error_controller.h" |
| 12 #include "ui/views/controls/button/label_button.h" | 12 #include "ui/views/controls/button/label_button.h" |
| 13 | 13 |
| 14 class Browser; | 14 class Browser; |
| 15 | 15 |
| 16 // Avatar button that displays the active profile's name in the caption area. | 16 // Avatar button that displays the active profile's name in the caption area. |
| 17 class NewAvatarButton : public views::LabelButton, | 17 class NewAvatarButton : public views::LabelButton, |
| 18 public ProfileInfoCacheObserver, | 18 public ProfileAttributesStorage::Observer, |
| 19 public SigninErrorController::Observer { | 19 public SigninErrorController::Observer { |
| 20 public: | 20 public: |
| 21 NewAvatarButton(views::ButtonListener* listener, | 21 NewAvatarButton(views::ButtonListener* listener, |
| 22 AvatarButtonStyle button_style, | 22 AvatarButtonStyle button_style, |
| 23 Browser* browser); | 23 Browser* browser); |
| 24 ~NewAvatarButton() override; | 24 ~NewAvatarButton() override; |
| 25 | 25 |
| 26 // Views::LabelButton | 26 // Views::LabelButton |
| 27 bool OnMousePressed(const ui::MouseEvent& event) override; | 27 bool OnMousePressed(const ui::MouseEvent& event) override; |
| 28 void OnMouseReleased(const ui::MouseEvent& event) override; | 28 void OnMouseReleased(const ui::MouseEvent& event) override; |
| 29 | 29 |
| 30 // Views | 30 // Views |
| 31 void OnGestureEvent(ui::GestureEvent* event) override; | 31 void OnGestureEvent(ui::GestureEvent* event) override; |
| 32 | 32 |
| 33 private: | 33 private: |
| 34 friend class ProfileChooserViewExtensionsTest; | 34 friend class ProfileChooserViewExtensionsTest; |
| 35 | 35 |
| 36 // ProfileInfoCacheObserver: | 36 // ProfileAttributesStorage::Observer: |
| 37 void OnProfileAdded(const base::FilePath& profile_path) override; | 37 void OnProfileAdded(const base::FilePath& profile_path) override; |
| 38 void OnProfileWasRemoved(const base::FilePath& profile_path, | 38 void OnProfileWasRemoved(const base::FilePath& profile_path, |
| 39 const base::string16& profile_name) override; | 39 const base::string16& profile_name) override; |
| 40 void OnProfileNameChanged(const base::FilePath& profile_path, | 40 void OnProfileNameChanged(const base::FilePath& profile_path, |
| 41 const base::string16& old_profile_name) override; | 41 const base::string16& old_profile_name) override; |
| 42 void OnProfileSupervisedUserIdChanged( | 42 void OnProfileSupervisedUserIdChanged( |
| 43 const base::FilePath& profile_path) override; | 43 const base::FilePath& profile_path) override; |
| 44 | 44 |
| 45 // SigninErrorController::Observer: | 45 // SigninErrorController::Observer: |
| 46 void OnErrorChanged() override; | 46 void OnErrorChanged() override; |
| (...skipping 14 matching lines...) Expand all Loading... |
| 61 | 61 |
| 62 // This is used to check if the bubble was showing during the mouse pressed | 62 // This is used to check if the bubble was showing during the mouse pressed |
| 63 // event. If this is true then the mouse released event is ignored to prevent | 63 // event. If this is true then the mouse released event is ignored to prevent |
| 64 // the bubble from reshowing. | 64 // the bubble from reshowing. |
| 65 bool suppress_mouse_released_action_; | 65 bool suppress_mouse_released_action_; |
| 66 | 66 |
| 67 DISALLOW_COPY_AND_ASSIGN(NewAvatarButton); | 67 DISALLOW_COPY_AND_ASSIGN(NewAvatarButton); |
| 68 }; | 68 }; |
| 69 | 69 |
| 70 #endif // CHROME_BROWSER_UI_VIEWS_PROFILES_NEW_AVATAR_BUTTON_H_ | 70 #endif // CHROME_BROWSER_UI_VIEWS_PROFILES_NEW_AVATAR_BUTTON_H_ |
| OLD | NEW |