Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(28)

Side by Side Diff: chrome/browser/download/notification/download_notification_item.h

Issue 1005393003: [Download Notification] Use NotificationUIManager instead of MessageCenter (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed the comments Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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_DOWNLOAD_NOTIFICATION_DOWNLOAD_NOTIFICATION_ITEM_H_ 5 #ifndef CHROME_BROWSER_DOWNLOAD_NOTIFICATION_DOWNLOAD_NOTIFICATION_ITEM_H_
6 #define CHROME_BROWSER_DOWNLOAD_NOTIFICATION_DOWNLOAD_NOTIFICATION_ITEM_H_ 6 #define CHROME_BROWSER_DOWNLOAD_NOTIFICATION_DOWNLOAD_NOTIFICATION_ITEM_H_
7 7
8 #include "chrome/browser/download/notification/download_notification_item.h" 8 #include "chrome/browser/download/notification/download_notification_item.h"
9 9
10 #include "base/strings/string_number_conversions.h" 10 #include "base/strings/string_number_conversions.h"
11 #include "chrome/browser/download/download_commands.h" 11 #include "chrome/browser/download/download_commands.h"
12 #include "chrome/browser/notifications/notification.h"
13 #include "chrome/browser/notifications/notification_delegate.h"
14 #include "chrome/browser/notifications/notification_test_util.h"
12 #include "content/public/browser/download_item.h" 15 #include "content/public/browser/download_item.h"
13 #include "grit/theme_resources.h" 16 #include "grit/theme_resources.h"
14 #include "ui/message_center/message_center.h" 17 #include "ui/message_center/message_center.h"
15 #include "ui/message_center/message_center_observer.h" 18 #include "ui/message_center/message_center_observer.h"
16 #include "ui/message_center/notification.h"
17 #include "ui/message_center/notification_delegate.h"
18
19 using message_center::Notification;
20 19
21 namespace test { 20 namespace test {
22 class DownloadNotificationItemTest; 21 class DownloadNotificationItemTest;
23 } 22 }
24 23
25 class DownloadNotificationItem : public content::DownloadItem::Observer { 24 class DownloadNotificationItem : public content::DownloadItem::Observer {
26 public: 25 public:
27 class Delegate { 26 class Delegate {
28 public: 27 public:
29 virtual void OnDownloadStarted(DownloadNotificationItem* item) = 0; 28 virtual void OnDownloadStarted(DownloadNotificationItem* item) = 0;
30 virtual void OnDownloadStopped(DownloadNotificationItem* item) = 0; 29 virtual void OnDownloadStopped(DownloadNotificationItem* item) = 0;
31 virtual void OnDownloadRemoved(DownloadNotificationItem* item) = 0; 30 virtual void OnDownloadRemoved(DownloadNotificationItem* item) = 0;
32 }; 31 };
33 32
34 DownloadNotificationItem(content::DownloadItem* item, Delegate* delegate); 33 static const char kDownloadNotificationOrigin[];
34
35 DownloadNotificationItem(content::DownloadItem* item,
36 Profile* profile,
37 Delegate* delegate);
35 38
36 ~DownloadNotificationItem() override; 39 ~DownloadNotificationItem() override;
37 40
38 private: 41 private:
39 class NotificationWatcher : public message_center::NotificationDelegate, 42 friend class test::DownloadNotificationItemTest;
40 public message_center::MessageCenterObserver { 43
44 class NotificationWatcher : public NotificationDelegate {
41 public: 45 public:
42 explicit NotificationWatcher(DownloadNotificationItem* item); 46 explicit NotificationWatcher(DownloadNotificationItem* item);
43 47
48 // NotificationDelegate overrides:
49 void Close(bool by_user) override;
50 void Click() override;
51 bool HasClickedListener() override;
52 void ButtonClick(int button_index) override;
53 std::string id() const override;
54
44 private: 55 private:
45 ~NotificationWatcher() override; 56 ~NotificationWatcher() override;
46 57
47 // message_center::NotificationDelegate overrides:
48 void Close(bool by_user) override;
49 void Click() override;
50 bool HasClickedListener() override;
51 void ButtonClick(int button_index) override;
52
53 // message_center::MessageCenterObserver overrides:
54 void OnNotificationRemoved(const std::string& id, bool by_user) override;
55
56 DownloadNotificationItem* item_; 58 DownloadNotificationItem* item_;
57 }; 59 };
58 60
61 // For testing. This is set by SetStubNotificationUIManagerForTesting method.
62 static StubNotificationUIManager* stub_notification_ui_manager_for_testing_;
Randy Smith (Not in Mondays) 2015/04/15 19:16:31 nit, suggestion: There's no real reason that this
63
64 // Replaces the NotificationUIManager for tests.
65 static void SetStubNotificationUIManagerForTesting(
66 StubNotificationUIManager* stub_notification_ui_manager) {
67 stub_notification_ui_manager_for_testing_ = stub_notification_ui_manager;
68 }
69
70 // Methods called from NotificationWatcher.
59 void OnNotificationClick(); 71 void OnNotificationClick();
60 void OnNotificationButtonClick(int button_index); 72 void OnNotificationButtonClick(int button_index);
61 void OnNotificationClose(bool by_user);
62 void OnNotificationRemoved(bool by_user);
63 73
64 // DownloadItem::Observer overrides: 74 // DownloadItem::Observer overrides:
65 void OnDownloadUpdated(content::DownloadItem* item) override; 75 void OnDownloadUpdated(content::DownloadItem* item) override;
66 void OnDownloadOpened(content::DownloadItem* item) override; 76 void OnDownloadOpened(content::DownloadItem* item) override;
67 void OnDownloadRemoved(content::DownloadItem* item) override; 77 void OnDownloadRemoved(content::DownloadItem* item) override;
68 void OnDownloadDestroyed(content::DownloadItem* item) override; 78 void OnDownloadDestroyed(content::DownloadItem* item) override;
69 79
70 void UpdateNotificationData(); 80 void UpdateNotificationData();
71 void SetNotificationImage(int resource_id); 81 void SetNotificationImage(int resource_id);
72 82
83 NotificationUIManager* notification_ui_manager() const;
84
73 // Returns a short one-line status string for the download. 85 // Returns a short one-line status string for the download.
74 base::string16 GetTitle() const; 86 base::string16 GetTitle() const;
75 87
76 // Returns a short one-line status string for a download command. 88 // Returns a short one-line status string for a download command.
77 base::string16 GetCommandLabel(DownloadCommands::Command command) const; 89 base::string16 GetCommandLabel(DownloadCommands::Command command) const;
78 90
79 // Get the warning test to notify a dangerous download. Should only be called 91 // Get the warning test to notify a dangerous download. Should only be called
80 // if IsDangerous() is true. 92 // if IsDangerous() is true.
81 base::string16 GetWarningText() const; 93 base::string16 GetWarningText() const;
82 94
83 scoped_ptr<std::vector<DownloadCommands::Command>> GetPossibleActions() const; 95 scoped_ptr<std::vector<DownloadCommands::Command>> GetPossibleActions() const;
84 96
85 bool openable_; 97 bool openable_;
86 bool downloading_; 98 bool downloading_;
87 bool reshow_after_remove_;
88 int image_resource_id_; 99 int image_resource_id_;
100 Profile* profile_;
89 scoped_refptr<NotificationWatcher> watcher_; 101 scoped_refptr<NotificationWatcher> watcher_;
90 102
91 message_center::MessageCenter* message_center_;
92 scoped_ptr<Notification> notification_; 103 scoped_ptr<Notification> notification_;
93 104
94 content::DownloadItem* item_; 105 content::DownloadItem* item_;
95 scoped_ptr<std::vector<DownloadCommands::Command>> button_actions_; 106 scoped_ptr<std::vector<DownloadCommands::Command>> button_actions_;
96 107
97 Delegate* const delegate_; 108 Delegate* const delegate_;
98 109
99 friend class test::DownloadNotificationItemTest;
100
101 DISALLOW_COPY_AND_ASSIGN(DownloadNotificationItem); 110 DISALLOW_COPY_AND_ASSIGN(DownloadNotificationItem);
102 }; 111 };
103 112
104 #endif // CHROME_BROWSER_DOWNLOAD_NOTIFICATION_DOWNLOAD_NOTIFICATION_ITEM_H_ 113 #endif // CHROME_BROWSER_DOWNLOAD_NOTIFICATION_DOWNLOAD_NOTIFICATION_ITEM_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698