OLD | NEW |
---|---|
(Empty) | |
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 | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef CHROME_BROWSER_UI_TOOLBAR_WRENCH_MENU_BADGE_CONTROLLER_H_ | |
6 #define CHROME_BROWSER_UI_TOOLBAR_WRENCH_MENU_BADGE_CONTROLLER_H_ | |
7 | |
8 #include "base/macros.h" | |
9 #include "chrome/browser/ui/toolbar/wrench_icon_painter.h" | |
10 #include "content/public/browser/notification_details.h" | |
11 #include "content/public/browser/notification_observer.h" | |
12 #include "content/public/browser/notification_registrar.h" | |
13 #include "content/public/browser/notification_service.h" | |
14 | |
15 class Profile; | |
16 | |
17 // WrenchMenuBadgeController encapsulates the logic for badging the wrench menu | |
18 // icon as a result of various events - such as available updates, errors, etc. | |
19 class WrenchMenuBadgeController : public content::NotificationObserver { | |
20 public: | |
21 enum BadgeType { | |
sky
2014/07/17 19:54:28
nit: use enum names as described for content, eg B
Alexei Svitkine (slow)
2014/07/17 21:35:28
Done.
| |
22 NONE, | |
23 UPGRADE_NOTIFICATION, | |
24 GLOBAL_ERROR, | |
25 INCOMPATIBILITY_WARNING, | |
26 }; | |
27 | |
28 // Delegate interface for receiving badge update notifications. | |
29 class Delegate { | |
30 public: | |
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 | |
33 // specifies the type of change (i.e. the source of the notification). | |
34 virtual void UpdateBadgeSeverity(BadgeType type, | |
35 WrenchIconPainter::Severity severity, | |
36 bool animate) = 0; | |
37 }; | |
sky
2014/07/17 19:54:28
add protected virtual constructor to make ownershi
Alexei Svitkine (slow)
2014/07/17 21:35:28
Done.
| |
38 | |
39 // Creates an instance of this class for the given |profile| that will notify | |
40 // |delegate| of updates. | |
41 WrenchMenuBadgeController(Profile* profile, Delegate* delegate); | |
42 virtual ~WrenchMenuBadgeController(); | |
43 | |
44 // Forces an update of the UI based on the current state of the world. This | |
45 // will check whether there are any current pending updates, global errors, | |
46 // etc. and based on that information trigger an appropriate call to the | |
47 // delegate. | |
48 void UpdateDelegate(); | |
49 | |
50 private: | |
51 // content::NotificationObserver: | |
52 virtual void Observe(int type, | |
53 const content::NotificationSource& source, | |
54 const content::NotificationDetails& details) OVERRIDE; | |
55 | |
56 Profile* profile_; | |
57 Delegate* delegate_; | |
58 content::NotificationRegistrar registrar_; | |
59 | |
60 DISALLOW_COPY_AND_ASSIGN(WrenchMenuBadgeController); | |
61 }; | |
62 | |
63 #endif // CHROME_BROWSER_UI_TOOLBAR_WRENCH_MENU_BADGE_CONTROLLER_H_ | |
OLD | NEW |