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

12 3 4

  /external/chromium_org/chrome/browser/notifications/
desktop_notifications_unittest.cc 52 new LoggingNotificationProxy(notification.notification_id()));
141 params.notification_id = 0;
154 params.notification_id = 1;
165 params2.notification_id = 2;
180 params.notification_id = 1;
201 int notification_id = 1; local
205 params.notification_id = notification_id;
217 notification_id);
236 params.notification_id = id
    [all...]
balloon_notification_ui_manager.h 38 const std::string& notification_id) const OVERRIDE;
39 virtual bool CancelById(const std::string& notification_id) OVERRIDE;
notification_object_proxy.cc 13 int notification_id, bool worker)
16 notification_id_(notification_id),
notification_ui_manager_impl.h 40 const std::string& notification_id) const OVERRIDE;
41 virtual bool CancelById(const std::string& notification_id) OVERRIDE;
balloon_collection_base.h 60 Balloon* FindBalloonById(const std::string& notification_id);
desktop_notification_service.h 86 int notification_id);
128 // Remove any active notification corresponding to |notification_id|.
129 static void RemoveNotification(const std::string& notification_id);
notification_ui_manager_mac.h 39 virtual bool CancelById(const std::string& notification_id) OVERRIDE;
  /external/chromium/chrome/browser/
desktop_notification_handler.cc 63 void DesktopNotificationHandler::OnCancel(int notification_id) {
71 notification_id);
  /external/chromium_org/base/win/
metro.h 115 const char* notification_id,
120 typedef bool (*MetroCancelNotification)(const char* notification_id);
  /external/chromium_org/chrome/browser/notifications/sync_notifier/
chrome_notifier_delegate.cc 15 const std::string& notification_id,
17 : notification_id_(notification_id), chrome_notifier_(notifier) {}
chrome_notifier_service.h 61 const std::string& notification_id);
101 void FreeNotificationById(const std::string& notification_id);
  /external/chromium_org/chrome/browser/task_manager/
task_manager_notification_browsertest.cc 79 notifications->CancelById(n1.notification_id());
81 notifications->CancelById(n2.notification_id());
  /external/chromium_org/content/renderer/
notification_provider.cc 39 int notification_id = manager_.RegisterNotification(notification); local
41 return ShowHTML(notification, notification_id);
43 return ShowText(notification, notification_id);
112 params.notification_id = id;
128 params.notification_id = id;
  /external/chromium_org/chrome/browser/download/
download_status_updater_win.cc 139 std::string notification_id = kDownloadNotificationPrefix; local
140 notification_id += base::IntToString(g_next_notification_id++);
147 notification_id.c_str(),
  /external/chromium_org/ui/message_center/
fake_message_center.h 39 virtual void SetNotificationIcon(const std::string& notification_id,
42 virtual void SetNotificationImage(const std::string& notification_id,
45 virtual void SetNotificationButtonIcon(const std::string& notification_id,
notification_list.h 74 bool SetNotificationIcon(const std::string& notification_id,
78 bool SetNotificationImage(const std::string& notification_id,
82 bool SetNotificationButtonIcon(const std::string& notification_id,
message_center_impl.cc 349 void MessageCenterImpl::SetNotificationIcon(const std::string& notification_id,
351 if (notification_list_->SetNotificationIcon(notification_id, image)) {
353 OnNotificationUpdated(notification_id));
357 void MessageCenterImpl::SetNotificationImage(const std::string& notification_id,
359 if (notification_list_->SetNotificationImage(notification_id, image)) {
361 OnNotificationUpdated(notification_id));
366 const std::string& notification_id, int button_index,
368 if (!HasNotification(notification_id))
370 if (notification_list_->SetNotificationButtonIcon(notification_id,
373 OnNotificationUpdated(notification_id));
    [all...]
message_center_impl.h 157 virtual void SetNotificationIcon(const std::string& notification_id,
159 virtual void SetNotificationImage(const std::string& notification_id,
161 virtual void SetNotificationButtonIcon(const std::string& notification_id,
notification_list.cc 149 bool NotificationList::SetNotificationIcon(const std::string& notification_id,
151 Notifications::iterator iter = GetNotification(notification_id);
158 bool NotificationList::SetNotificationImage(const std::string& notification_id,
160 Notifications::iterator iter = GetNotification(notification_id);
168 const std::string& notification_id, int button_index,
170 Notifications::iterator iter = GetNotification(notification_id);
  /external/chromium/chrome/browser/notifications/
notification.h 47 std::string notification_id() const { return delegate()->id(); } function in class:Notification
notification_ui_manager.h 54 virtual bool CancelById(const std::string& notification_id);
  /external/chromium_org/win8/metro_driver/
toast_notification_handler.h 32 const char* notification_id,
  /external/chromium_org/content/public/browser/
render_view_host.h 108 virtual void DesktopNotificationPostError(int notification_id,
110 virtual void DesktopNotificationPostClose(int notification_id,
112 virtual void DesktopNotificationPostClick(int notification_id) = 0;
  /external/chromium_org/ui/message_center/views/
message_popup_collection.cc 344 const std::string& notification_id) {
349 const std::string& notification_id,
354 if ((*iter)->id() == notification_id)
386 const std::string& notification_id) {
390 if ((*toast_iter)->id() == notification_id)
402 if ((*iter)->id() != notification_id)
428 const std::string& notification_id) {
430 if ((*iter)->id() == notification_id)
  /external/chromium_org/chrome/browser/extensions/api/notifications/
notifications_api.cc 488 std::string notification_id; local
489 if (!params_->notification_id.empty())
490 notification_id = params_->notification_id;
492 notification_id = kNotificationPrefix + base::Uint64ToString(next_id_++);
494 SetResult(Value::CreateStringValue(notification_id));
497 if (!CreateNotification(notification_id, &params_->options))
519 CreateScopedIdentifier(extension_->id(), params_->notification_id));
532 params_->notification_id, &params_->options, &notification);
554 CreateScopedIdentifier(extension_->id(), params_->notification_id));
    [all...]

Completed in 414 milliseconds

12 3 4