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

1 2

  /external/chromium_org/chrome/browser/chromeos/file_manager/
desktop_notifications_browsertest.cc 27 notifications_.reset();
34 notifications_.reset(new DesktopNotifications(profile));
38 return notifications_->HasNotificationForTest(id);
41 scoped_ptr<DesktopNotifications> notifications_; member in class:file_manager::FileManagerDesktopNotificationsBrowserTest
47 notifications_->ShowNotification(DesktopNotifications::DEVICE, "path");
48 EXPECT_EQ(1u, notifications_->GetNotificationCountForTest());
52 notifications_->ShowNotification(DesktopNotifications::DEVICE, "path");
53 EXPECT_EQ(1u, notifications_->GetNotificationCountForTest());
57 notifications_->ShowNotification(DesktopNotifications::DEVICE_FAIL,
59 EXPECT_EQ(2u, notifications_->GetNotificationCountForTest())
    [all...]
  /external/chromium_org/ui/message_center/
notification_list.cc 59 STLDeleteContainerPointers(notifications_.begin(), notifications_.end());
73 for (Notifications::iterator iter = notifications_.begin();
74 iter != notifications_.end(); ++iter) {
94 if (iter == notifications_.end())
110 notifications_.erase(iter);
114 DCHECK(GetNotification(new_notification->id()) == notifications_.end());
115 notifications_.insert(new_notification.release());
125 for (Notifications::iterator iter = notifications_.begin();
126 iter != notifications_.end(); ++iter)
    [all...]
notification_list.h 150 Notifications notifications_; member in class:message_center::NotificationList
  /external/chromium_org/content/browser/
system_message_window_win.cc 32 explicit DeviceNotifications(HWND hwnd) : notifications_() {
57 DCHECK_EQ(notifications_[i], static_cast<HDEVNOTIFY>(NULL));
58 notifications_[i] = RegisterDeviceNotification(
60 DPLOG_IF(ERROR, !notifications_[i])
66 for (int i = 0; i < arraysize(notifications_); ++i) {
67 if (notifications_[i]) {
68 UnregisterDeviceNotification(notifications_[i]);
69 notifications_[i] = NULL;
75 HDEVNOTIFY notifications_[arraysize(kDeviceCategoryMap)]; member in class:content::SystemMessageWindowWin::DeviceNotifications
  /external/chromium_org/chrome/browser/extensions/
extension_notification_observer.cc 100 notifications_.push_back(static_cast<chrome::NotificationType>(type));
108 notifications_.push_back(static_cast<chrome::NotificationType>(type));
116 notifications_.push_back(static_cast<chrome::NotificationType>(type));
133 testing::AssertionResult result = (notifications_ == types) ?
136 "Got " << Str(notifications_);
137 notifications_.clear();
extension_notification_observer.h 63 std::vector<chrome::NotificationType> notifications_; member in class:extensions::ExtensionNotificationObserver
  /external/chromium_org/chrome/browser/storage_monitor/
storage_monitor.cc 19 : notifications_(notifications) {}
30 StorageMonitor* notifications_; member in class:StorageMonitor::ReceiverImpl
34 notifications_->ProcessAttach(info);
38 notifications_->ProcessDetach(id);
42 notifications_->MarkInitialized();
volume_mount_watcher_win.cc 331 notifications_(NULL) {
408 if (notifications_)
409 notifications_->MarkInitialized();
474 notifications_ = notifications;
489 if (notifications_)
490 notifications_->ProcessAttach(info);
505 if (notifications_)
506 notifications_->ProcessDetach(device_info->second.device_id());
media_transfer_protocol_device_observer_linux.cc 121 notifications_(receiver) {
134 notifications_(receiver) {
207 notifications_->ProcessAttach(storage_info);
214 notifications_->ProcessDetach(it->second.device_id());
media_transfer_protocol_device_observer_linux.h 83 StorageMonitor::Receiver* const notifications_; member in class:MediaTransferProtocolDeviceObserverLinux::StorageMonitor
volume_mount_watcher_win.h 114 StorageMonitor::Receiver* notifications_; member in class:VolumeMountWatcherWin
portable_device_watcher_win.h 121 HDEVNOTIFY notifications_; member in class:PortableDeviceWatcherWin
portable_device_watcher_win.cc 479 : notifications_(NULL),
485 UnregisterDeviceNotification(notifications_);
490 notifications_ = RegisterPortableDeviceNotification(hwnd);
  /external/chromium/chrome/browser/chromeos/extensions/
file_browser_event_router.cc 217 if (iter != notifications_.end()) {
230 notifications_.insert(NotificationMap::value_type(system_path,
239 if (iter != notifications_.end()) {
241 notifications_.erase(iter);
248 for (NotificationMap::iterator iter = notifications_.begin();
249 iter != notifications_.end();
258 return notifications_.end();
file_browser_event_router.h 79 NotificationMap notifications_; member in class:ExtensionFileBrowserEventRouter
  /external/chromium_org/chrome/browser/chromeos/extensions/file_manager/
event_router.cc 263 : notifications_(new DesktopNotifications(profile)),
661 notifications_->HideNotification(DesktopNotifications::DEVICE,
677 notifications_->ShowNotification(
683 notifications_->RegisterDevice(device_path);
684 notifications_->ShowNotificationDelayed(DesktopNotifications::DEVICE,
692 notifications_->HideNotification(DesktopNotifications::DEVICE,
694 notifications_->HideNotification(DesktopNotifications::DEVICE_FAIL,
696 notifications_->UnregisterDevice(device_path);
717 notifications_->ManageNotificationsOnMountCompleted(
745 notifications_->ShowNotification(DesktopNotifications::FORMAT_START
    [all...]
event_router.h 158 scoped_ptr<DesktopNotifications> notifications_; member in class:file_manager::EventRouter
  /external/chromium_org/ui/message_center/cocoa/
tray_view_controller.h 56 base::scoped_nsobject<NSMutableArray> notifications_; member in namespace:NSViewController
59 // |notifications_|.
  /external/chromium/chrome/browser/history/
expire_history_backend_unittest.cc 83 for (size_t i = 0; i < notifications_.size(); i++)
84 delete notifications_[i].second;
85 notifications_.clear();
124 NotificationList notifications_; member in class:history::ExpireHistoryTest
175 notifications_.push_back(std::make_pair(type, details_deleted));
382 for (size_t i = 0; i < notifications_.size(); i++) {
383 if (notifications_[i].first == NotificationType::HISTORY_URLS_DELETED) {
385 reinterpret_cast<URLsDeletedDetails*>(notifications_[i].second);
390 } else if (notifications_[i].first ==
394 reinterpret_cast<URLsModifiedDetails*>(notifications_[i].second)
    [all...]
  /external/chromium/testing/gtest/test/
gtest_output_test_.cc 486 &ThreadRoutine, &notifications_, NULL));
487 notifications_.spawn_thread_started.WaitForNotification();
495 notifications_.spawn_thread_ok_to_terminate.Notify();
499 SpawnThreadNotifications notifications_; member in class:DeathTestAndMultiThreadsTest
  /external/chromium_org/testing/gtest/test/
gtest_output_test_.cc 499 &ThreadRoutine, &notifications_, NULL));
500 notifications_.spawn_thread_started.WaitForNotification();
508 notifications_.spawn_thread_ok_to_terminate.Notify();
512 SpawnThreadNotifications notifications_; member in class:DeathTestAndMultiThreadsTest
  /external/gtest/test/
gtest_output_test_.cc 486 &ThreadRoutine, &notifications_, NULL));
487 notifications_.spawn_thread_started.WaitForNotification();
495 notifications_.spawn_thread_ok_to_terminate.Notify();
499 SpawnThreadNotifications notifications_; member in class:DeathTestAndMultiThreadsTest
  /ndk/sources/third_party/googletest/googletest/test/
gtest_output_test_.cc 499 &ThreadRoutine, &notifications_, NULL));
500 notifications_.spawn_thread_started.WaitForNotification();
508 notifications_.spawn_thread_ok_to_terminate.Notify();
512 SpawnThreadNotifications notifications_; member in class:DeathTestAndMultiThreadsTest
  /external/chromium_org/chrome/browser/history/
expire_history_backend_unittest.cc 85 STLDeleteValues(&notifications_);
123 NotificationList notifications_; member in class:history::ExpireHistoryTest
168 notifications_.push_back(std::make_pair(type, details_deleted));
332 for (size_t i = 0; i < notifications_.size(); i++) {
333 if (notifications_[i].first == chrome::NOTIFICATION_HISTORY_URLS_DELETED) {
335 notifications_[i].second);
343 EXPECT_NE(notifications_[i].first,
345 EXPECT_NE(notifications_[i].first,
    [all...]
  /external/chromium_org/chrome/browser/media_galleries/
media_galleries_preferences_unittest.cc 44 notifications_(0) {}
47 int notifications() const { return notifications_;}
55 ++notifications_;
62 ++notifications_;
68 ++notifications_;
74 ++notifications_;
80 ++notifications_;
84 int notifications_; member in class:__anon5228::MockGalleryChangeObserver
    [all...]

Completed in 1267 milliseconds

1 2