| 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_TOOLBAR_APP_MENU_BADGE_CONTROLLER_H_ | 5 #ifndef CHROME_BROWSER_UI_TOOLBAR_APP_MENU_BADGE_CONTROLLER_H_ |
| 6 #define CHROME_BROWSER_UI_TOOLBAR_APP_MENU_BADGE_CONTROLLER_H_ | 6 #define CHROME_BROWSER_UI_TOOLBAR_APP_MENU_BADGE_CONTROLLER_H_ |
| 7 | 7 |
| 8 #include "base/macros.h" | 8 #include "base/macros.h" |
| 9 #include "chrome/browser/ui/toolbar/app_menu_icon_painter.h" | 9 #include "chrome/browser/ui/toolbar/app_menu_icon_painter.h" |
| 10 #include "content/public/browser/notification_details.h" | 10 #include "content/public/browser/notification_details.h" |
| 11 #include "content/public/browser/notification_observer.h" | 11 #include "content/public/browser/notification_observer.h" |
| 12 #include "content/public/browser/notification_registrar.h" | 12 #include "content/public/browser/notification_registrar.h" |
| 13 #include "content/public/browser/notification_service.h" | 13 #include "content/public/browser/notification_service.h" |
| 14 | 14 |
| 15 class Profile; | 15 class Profile; |
| 16 | 16 |
| 17 // AppMenuBadgeController encapsulates the logic for badging the app menu icon | 17 // AppMenuBadgeController encapsulates the logic for badging the app menu icon |
| 18 // as a result of various events - such as available updates, errors, etc. | 18 // as a result of various events - such as available updates, errors, etc. |
| 19 class AppMenuBadgeController : public content::NotificationObserver { | 19 class AppMenuBadgeController : public content::NotificationObserver { |
| 20 public: | 20 public: |
| 21 enum BadgeType { | 21 enum class BadgeType { |
| 22 BADGE_TYPE_NONE, | 22 NONE, |
| 23 BADGE_TYPE_UPGRADE_NOTIFICATION, | 23 UPGRADE_NOTIFICATION, |
| 24 BADGE_TYPE_GLOBAL_ERROR, | 24 GLOBAL_ERROR, |
| 25 BADGE_TYPE_INCOMPATIBILITY_WARNING, | 25 INCOMPATIBILITY_WARNING, |
| 26 }; | 26 }; |
| 27 | 27 |
| 28 // Delegate interface for receiving badge update notifications. | 28 // Delegate interface for receiving badge update notifications. |
| 29 class Delegate { | 29 class Delegate { |
| 30 public: | 30 public: |
| 31 // Notifies the UI to update the badge to have the specified |severity|, as | 31 // Notifies the UI to update the badge to have the specified |severity|, as |
| 32 // well as specifying whether it should |animate|. The |type| parameter | 32 // well as specifying whether it should |animate|. The |type| parameter |
| 33 // specifies the type of change (i.e. the source of the notification). | 33 // specifies the type of change (i.e. the source of the notification). |
| 34 virtual void UpdateBadgeSeverity(BadgeType type, | 34 virtual void UpdateBadgeSeverity(BadgeType type, |
| 35 AppMenuIconPainter::Severity severity, | 35 AppMenuIconPainter::Severity severity, |
| (...skipping 21 matching lines...) Expand all Loading... |
| 57 const content::NotificationDetails& details) override; | 57 const content::NotificationDetails& details) override; |
| 58 | 58 |
| 59 Profile* profile_; | 59 Profile* profile_; |
| 60 Delegate* delegate_; | 60 Delegate* delegate_; |
| 61 content::NotificationRegistrar registrar_; | 61 content::NotificationRegistrar registrar_; |
| 62 | 62 |
| 63 DISALLOW_COPY_AND_ASSIGN(AppMenuBadgeController); | 63 DISALLOW_COPY_AND_ASSIGN(AppMenuBadgeController); |
| 64 }; | 64 }; |
| 65 | 65 |
| 66 #endif // CHROME_BROWSER_UI_TOOLBAR_APP_MENU_BADGE_CONTROLLER_H_ | 66 #endif // CHROME_BROWSER_UI_TOOLBAR_APP_MENU_BADGE_CONTROLLER_H_ |
| OLD | NEW |