HomeSort by relevance Sort by last modified time
    Searched refs:notification_id (Results 1 - 25 of 84) sorted by null

1 2 3 4

  /external/chromium_org/ui/message_center/
message_center_observer.h 19 // Called when the notification associated with |notification_id| is added
21 virtual void OnNotificationAdded(const std::string& notification_id) {}
23 // Called when the notification associated with |notification_id| is removed
25 virtual void OnNotificationRemoved(const std::string& notification_id,
29 // |notification_id| is updated.
30 virtual void OnNotificationUpdated(const std::string& notification_id) {}
33 // |notification_id|.
34 virtual void OnNotificationClicked(const std::string& notification_id) {}
37 // of the notification associated with |notification_id|.
38 virtual void OnNotificationButtonClicked(const std::string& notification_id,
    [all...]
message_center_tray.h 73 virtual void OnNotificationAdded(const std::string& notification_id) OVERRIDE;
74 virtual void OnNotificationRemoved(const std::string& notification_id,
77 const std::string& notification_id) OVERRIDE;
79 const std::string& notification_id) OVERRIDE;
81 const std::string& notification_id,
84 const std::string& notification_id) OVERRIDE;
message_center.h 52 // Request to disable the extension associated with |notification_id|.
53 virtual void DisableExtension(const std::string& notification_id) = 0;
55 // Request to disable notifications from the source of |notification_id|.
57 const std::string& notification_id) = 0;
59 // Request to show the notification settings (|notification_id| is used
61 virtual void ShowSettings(const std::string& notification_id) = 0;
101 virtual void SetNotificationIcon(const std::string& notification_id,
106 virtual void SetNotificationImage(const std::string& notification_id,
110 virtual void SetNotificationButtonIcon(const std::string& notification_id,
message_center_tray.cc 123 const std::string& notification_id) {
128 const std::string& notification_id,
134 const std::string& notification_id) {
139 const std::string& notification_id) {
145 const std::string& notification_id,
152 const std::string& notification_id) {
fake_message_center.cc 72 void FakeMessageCenter::SetNotificationIcon(const std::string& notification_id,
76 void FakeMessageCenter::SetNotificationImage(const std::string& notification_id,
81 const std::string& notification_id,
  /external/chromium_org/content/public/common/
show_desktop_notification_params.cc 11 notification_id(0) {
show_desktop_notification_params.h 41 int notification_id; member in struct:content::ShowDesktopNotificationHostMsgParams
  /external/chromium_org/chrome/browser/chromeos/extensions/file_manager/
desktop_notifications.cc 164 const std::string& notification_id,
171 const string16 replace_id = UTF8ToUTF16(notification_id);
175 new Delegate(host->AsWeakPtr(), notification_id), profile);
303 std::string notification_id = GetNotificationId(type, path); local
304 hidden_notifications_.erase(notification_id);
305 ShowNotificationById(type, notification_id, message);
312 std::string notification_id = GetNotificationId(type, path); local
313 hidden_notifications_.erase(notification_id);
317 type, notification_id, GetMessage(type)),
323 std::string notification_id = GetNotificationId(type, path) local
    [all...]
desktop_notifications.h 92 const std::string& notification_id,
94 void HideNotificationById(const std::string& notification_id);
95 void RemoveNotificationById(const std::string& notification_id);
  /external/chromium_org/chrome/browser/notifications/
notification_ui_manager.h 38 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
balloon_collection_base.cc 42 if ((*iter)->notification().notification_id() == id) {
55 if ((*iter)->notification().notification_id() == id)
105 const std::string& notification_id) {
108 if ((*iter)->notification().notification_id() == notification_id) {
116 return FindBalloonById(notification.notification_id());
notification_object_proxy.h 21 int notification_id, bool worker);
desktop_notification_service_win.cc 16 int process_id, int route_id, int notification_id) {
18 new NotificationObjectProxy(process_id, route_id, notification_id,
44 notification.notification_id().c_str(),
message_center_notification_manager.h 45 const std::string& notification_id) const OVERRIDE;
46 virtual bool CancelById(const std::string& notification_id) OVERRIDE;
61 virtual void DisableExtension(const std::string& notification_id) OVERRIDE;
63 const std::string& notification_id) OVERRIDE;
64 virtual void ShowSettings(const std::string& notification_id) OVERRIDE;
67 virtual void OnNotificationRemoved(const std::string& notification_id,
70 virtual void OnNotificationUpdated(const std::string& notification_id)
146 // Profiles, so when MessageCenter calls back with a notification_id, this
188 // Use a map by notification_id since this mapping is the most often used.
message_center_notification_manager.cc 207 old_notification->notification().notification_id();
216 profile_notifications_[notification.notification_id()] = new_notification;
237 const std::string& notification_id) {
239 FindProfileNotification(notification_id);
254 const std::string& notification_id) {
256 FindProfileNotification(notification_id);
278 const std::string& notification_id) {
280 if (notification_id.empty()) {
286 FindProfileNotification(notification_id);
302 const std::string& notification_id,
    [all...]
  /external/chromium/chrome/browser/
desktop_notification_handler.h 27 void OnCancel(int notification_id);
  /external/chromium/chrome/browser/notifications/
notification_object_proxy.cc 14 int notification_id, bool worker)
17 notification_id_(notification_id),
notification_object_proxy.h 27 int notification_id, bool worker);
desktop_notifications_unittest.cc 34 new LoggingNotificationProxy(notification.notification_id()));
104 params.notification_id = 0;
116 params.notification_id = 1;
127 params2.notification_id = 2;
141 params.notification_id = 1;
162 int notification_id = 1; local
165 params.notification_id = notification_id;
177 notification_id);
195 params.notification_id = id
    [all...]
balloon_collection_base.cc 41 if ((*iter)->notification().notification_id() == id)
79 if ((*iter)->notification().notification_id() ==
80 notification.notification_id()) {
  /external/chromium/chrome/browser/chromeos/notifications/
desktop_notifications_unittest.cc 43 new LoggingNotificationProxy(notification.notification_id()));
99 params.notification_id = 0;
111 params.notification_id = 1;
122 params2.notification_id = 2;
136 params.notification_id = 1;
162 int notification_id = 1; local
165 params.notification_id = notification_id;
177 notification_id);
196 params.notification_id = id
    [all...]
  /external/chromium_org/chrome/browser/notifications/sync_notifier/
chrome_notifier_delegate.h 25 explicit ChromeNotifierDelegate(const std::string& notification_id,
  /external/chromium_org/content/common/
desktop_notification_messages.h 22 IPC_STRUCT_TRAITS_MEMBER(notification_id)
30 int /* notification_id */)
35 int /* notification_id */,
40 int /* notification_id */,
45 int /* notification_id */)
57 int /* notification_id */)
  /external/chromium_org/ui/message_center/views/
message_popup_collection.h 141 virtual void OnNotificationAdded(const std::string& notification_id) OVERRIDE;
142 virtual void OnNotificationRemoved(const std::string& notification_id,
145 const std::string& notification_id) OVERRIDE;
147 ToastContentsView* FindToast(const std::string& notification_id);
  /external/chromium_org/chrome/browser/extensions/api/notifications/
notifications_apitest.cc 45 std::string notification_id; local
68 ASSERT_TRUE(result->GetAsString(&notification_id));
69 ASSERT_TRUE(notification_id.length() > 0);
83 "[\"" + notification_id +
165 "[\"" + notification_id + "\"]",
199 std::string notification_id; local
201 ASSERT_TRUE(result->GetAsString(&notification_id));
202 ASSERT_TRUE(notification_id.length() > 0);
238 std::string notification_id; local
240 ASSERT_TRUE(result->GetAsString(&notification_id));
369 std::string notification_id; local
497 std::string notification_id; local
629 std::string notification_id; local
    [all...]

Completed in 976 milliseconds

1 2 3 4