Searched refs:notification_id (Results 1 - 25 of 62) sorted by relevance

123

/external/chromium_org/ui/message_center/views/
H A Dmessage_center_controller.h23 virtual void ClickOnNotification(const std::string& notification_id) = 0;
24 virtual void RemoveNotification(const std::string& notification_id,
29 virtual bool HasClickedListener(const std::string& notification_id) = 0;
30 virtual void ClickOnNotificationButton(const std::string& notification_id,
H A Dmessage_popup_collection.h65 virtual void ClickOnNotification(const std::string& notification_id) OVERRIDE;
66 virtual void RemoveNotification(const std::string& notification_id,
71 virtual bool HasClickedListener(const std::string& notification_id) OVERRIDE;
72 virtual void ClickOnNotificationButton(const std::string& notification_id,
131 virtual void OnNotificationAdded(const std::string& notification_id) OVERRIDE;
132 virtual void OnNotificationRemoved(const std::string& notification_id,
135 const std::string& notification_id) OVERRIDE;
137 ToastContentsView* FindToast(const std::string& notification_id) const;
H A Dtoast_contents_view.cc51 const std::string& notification_id,
54 id_(notification_id),
294 const std::string& notification_id) {
296 collection_->ClickOnNotification(notification_id);
300 const std::string& notification_id,
303 collection_->RemoveNotification(notification_id, by_user);
316 const std::string& notification_id) {
319 return collection_->HasClickedListener(notification_id);
323 const std::string& notification_id,
326 collection_->ClickOnNotificationButton(notification_id, button_inde
50 ToastContentsView( const std::string& notification_id, base::WeakPtr<MessagePopupCollection> collection) argument
293 ClickOnNotification( const std::string& notification_id) argument
299 RemoveNotification( const std::string& notification_id, bool by_user) argument
315 HasClickedListener( const std::string& notification_id) argument
322 ClickOnNotificationButton( const std::string& notification_id, int button_index) argument
[all...]
H A Dmessage_popup_collection.cc79 const std::string& notification_id) {
80 message_center_->ClickOnNotification(notification_id);
84 const std::string& notification_id,
86 message_center_->RemoveNotification(notification_id, by_user);
96 const std::string& notification_id) {
97 return message_center_->HasClickedListener(notification_id);
101 const std::string& notification_id,
103 message_center_->ClickOnNotificationButton(notification_id, button_index);
328 const std::string& notification_id) {
333 const std::string& notification_id,
78 ClickOnNotification( const std::string& notification_id) argument
83 RemoveNotification( const std::string& notification_id, bool by_user) argument
95 HasClickedListener( const std::string& notification_id) argument
100 ClickOnNotificationButton( const std::string& notification_id, int button_index) argument
327 OnNotificationAdded( const std::string& notification_id) argument
332 OnNotificationRemoved( const std::string& notification_id, bool by_user) argument
374 OnNotificationUpdated( const std::string& notification_id) argument
[all...]
H A Dmessage_view.h37 virtual void ClickOnNotification(const std::string& notification_id) = 0;
38 virtual void RemoveNotification(const std::string& notification_id,
54 const std::string& notification_id,
94 std::string notification_id() { return notification_id_; } function in class:message_center::MessageView
H A Dmessage_center_view_unittest.cc98 virtual void ClickOnNotification(const std::string& notification_id) OVERRIDE;
99 virtual void RemoveNotification(const std::string& notification_id,
104 virtual bool HasClickedListener(const std::string& notification_id) OVERRIDE;
105 virtual void ClickOnNotificationButton(const std::string& notification_id,
178 const std::string& notification_id) {
184 const std::string& notification_id,
199 const std::string& notification_id) {
204 const std::string& notification_id,
177 ClickOnNotification( const std::string& notification_id) argument
183 RemoveNotification( const std::string& notification_id, bool by_user) argument
198 HasClickedListener( const std::string& notification_id) argument
203 ClickOnNotificationButton( const std::string& notification_id, int button_index) argument
H A Dtoast_contents_view.h44 ToastContentsView(const std::string& notification_id,
82 virtual void ClickOnNotification(const std::string& notification_id) OVERRIDE;
83 virtual void RemoveNotification(const std::string& notification_id,
88 virtual bool HasClickedListener(const std::string& notification_id) OVERRIDE;
89 virtual void ClickOnNotificationButton(const std::string& notification_id,
/external/chromium_org/ui/message_center/
H A Dmessage_center_observer.h21 // Called when the notification associated with |notification_id| is added
23 virtual void OnNotificationAdded(const std::string& notification_id) {} argument
25 // Called when the notification associated with |notification_id| is removed
27 virtual void OnNotificationRemoved(const std::string& notification_id, argument
31 // |notification_id| is updated.
32 virtual void OnNotificationUpdated(const std::string& notification_id) {} argument
35 // |notification_id|.
36 virtual void OnNotificationClicked(const std::string& notification_id) {} argument
39 // of the notification associated with |notification_id|.
40 virtual void OnNotificationButtonClicked(const std::string& notification_id, argument
45 OnNotificationDisplayed( const std::string& notification_id, const DisplaySource source) argument
[all...]
H A Dmessage_center_tray.h77 virtual void OnNotificationAdded(const std::string& notification_id) OVERRIDE;
78 virtual void OnNotificationRemoved(const std::string& notification_id,
81 const std::string& notification_id) OVERRIDE;
83 const std::string& notification_id) OVERRIDE;
85 const std::string& notification_id,
88 const std::string& notification_id,
H A Dmessage_center_tray.cc207 const std::string& notification_id) {
212 const std::string& notification_id,
218 const std::string& notification_id) {
223 const std::string& notification_id) {
229 const std::string& notification_id,
236 const std::string& notification_id,
206 OnNotificationAdded( const std::string& notification_id) argument
211 OnNotificationRemoved( const std::string& notification_id, bool by_user) argument
217 OnNotificationUpdated( const std::string& notification_id) argument
222 OnNotificationClicked( const std::string& notification_id) argument
228 OnNotificationButtonClicked( const std::string& notification_id, int button_index) argument
235 OnNotificationDisplayed( const std::string& notification_id, const DisplaySource source) argument
H A Dfake_message_center.cc81 void FakeMessageCenter::SetNotificationIcon(const std::string& notification_id, argument
85 void FakeMessageCenter::SetNotificationImage(const std::string& notification_id, argument
90 const std::string& notification_id,
89 SetNotificationButtonIcon( const std::string& notification_id, int button_index, const gfx::Image& image) argument
H A Dfake_message_center.h44 virtual void SetNotificationIcon(const std::string& notification_id,
47 virtual void SetNotificationImage(const std::string& notification_id,
50 virtual void SetNotificationButtonIcon(const std::string& notification_id,
H A Dmessage_center.h102 virtual void SetNotificationIcon(const std::string& notification_id,
107 virtual void SetNotificationImage(const std::string& notification_id,
111 virtual void SetNotificationButtonIcon(const std::string& notification_id,
/external/chromium_org/chrome/browser/notifications/
H A Dmessage_center_stats_collector.cc57 const std::string& notification_id) {
58 stats_[notification_id] = NotificationStats(notification_id);
60 StatsCollection::iterator iter = stats_.find(notification_id);
63 stats_[notification_id].CollectAction(NOTIFICATION_ACTION_ADD);
67 const std::string& notification_id, bool by_user) {
68 StatsCollection::iterator iter = stats_.find(notification_id);
76 stats_.erase(notification_id);
80 const std::string& notification_id) {
81 StatsCollection::iterator iter = stats_.find(notification_id);
56 OnNotificationAdded( const std::string& notification_id) argument
66 OnNotificationRemoved( const std::string& notification_id, bool by_user) argument
79 OnNotificationUpdated( const std::string& notification_id) argument
89 OnNotificationClicked( const std::string& notification_id) argument
99 OnNotificationButtonClicked( const std::string& notification_id, int button_index) argument
110 OnNotificationDisplayed( const std::string& notification_id, const message_center::DisplaySource source) argument
[all...]
H A Dmessage_center_stats_collector.h66 virtual void OnNotificationAdded(const std::string& notification_id) OVERRIDE;
67 virtual void OnNotificationRemoved(const std::string& notification_id,
70 const std::string& notification_id) OVERRIDE;
72 const std::string& notification_id) OVERRIDE;
73 virtual void OnNotificationButtonClicked(const std::string& notification_id,
76 const std::string& notification_id,
H A Dgoogle_now_notification_stats_collector.h26 const std::string& notification_id,
35 bool IsNotificationIdForGoogleNow(const std::string& notification_id);
H A Dgoogle_now_notification_stats_collector.cc32 const std::string& notification_id,
35 IsNotificationIdForGoogleNow(notification_id)) {
52 const std::string& notification_id) {
55 g_browser_process->notification_ui_manager()->FindById(notification_id);
31 OnNotificationDisplayed( const std::string& notification_id, const message_center::DisplaySource source) argument
51 IsNotificationIdForGoogleNow( const std::string& notification_id) argument
H A Dnotification_ui_manager.h38 const std::string& notification_id) const = 0;
42 virtual bool CancelById(const std::string& notification_id) = 0;
44 // Adds the notification_id for each outstanding notification to the set
H A Dnotification_ui_manager_android.cc32 const std::string& notification_id) const {
37 const std::string& notification_id) {
36 CancelById( const std::string& notification_id) argument
H A Dnotification_ui_manager_android.h22 const std::string& notification_id) const OVERRIDE;
23 virtual bool CancelById(const std::string& notification_id) OVERRIDE;
H A Dnotification_test_util.cc57 bool StubNotificationUIManager::CancelById(const std::string& notification_id) { argument
58 dismissed_id_ = notification_id;
/external/chromium_org/chrome/browser/extensions/api/notification_provider/
H A Dnotification_provider_api.cc39 const std::string& notification_id,
41 Create(notification_provider_id, sender_id, notification_id, options);
47 const std::string& notification_id,
49 Update(notification_provider_id, sender_id, notification_id, options);
54 const std::string& notification_id) {
55 Clear(notification_provider_id, sender_id, notification_id);
61 const std::string& notification_id,
65 sender_id, notification_id, options);
77 const std::string& notification_id,
81 sender_id, notification_id, option
36 CreateNotification( const std::string& notification_provider_id, const std::string& sender_id, const std::string& notification_id, const api::notifications::NotificationOptions& options) argument
44 UpdateNotification( const std::string& notification_provider_id, const std::string& sender_id, const std::string& notification_id, const api::notifications::NotificationOptions& options) argument
51 ClearNotification( const std::string& notification_provider_id, const std::string& sender_id, const std::string& notification_id) argument
58 Create( const std::string& notification_provider_id, const std::string& sender_id, const std::string& notification_id, const api::notifications::NotificationOptions& options) argument
74 Update( const std::string& notification_provider_id, const std::string& sender_id, const std::string& notification_id, const api::notifications::NotificationOptions& options) argument
90 Clear( const std::string& notification_provider_id, const std::string& sender_id, const std::string& notification_id) argument
[all...]
H A Dnotification_provider_api.h29 const std::string& notification_id,
38 const std::string& notification_id);
43 const std::string& notification_id,
47 const std::string& notification_id,
51 const std::string& notification_id);
/external/chromium_org/chrome/browser/chromeos/net/
H A Dnetwork_portal_notification_controller_unittest.cc33 const std::string& notification_id) OVERRIDE {
34 if (notification_id == kNotificationId)
38 virtual void OnNotificationRemoved(const std::string& notification_id,
40 if (notification_id == kNotificationId)
45 const std::string& notification_id) OVERRIDE {
46 if (notification_id == kNotificationId)
/external/chromium_org/base/win/
H A Dmetro.h104 const char* notification_id,
109 typedef bool (*MetroCancelNotification)(const char* notification_id);

Completed in 759 milliseconds

123