/external/chromium_org/content/public/browser/ |
desktop_notification_delegate.h | 23 virtual void NotificationClosed(bool by_user) = 0;
|
/external/chromium_org/ui/message_center/ |
notification_delegate.h | 34 // user explicitly (as opposed to timeout/script), |by_user| should be true. 35 virtual void Close(bool by_user) = 0; 64 virtual void Close(bool by_user) OVERRIDE; 92 virtual void Close(bool by_user) OVERRIDE;
|
notification_delegate.cc | 31 void HandleNotificationClickedDelegate::Close(bool by_user) { 63 void HandleNotificationButtonClickDelegate::Close(bool by_user) {
|
fake_message_center.cc | 72 bool by_user) { 75 void FakeMessageCenter::RemoveAllNotifications(bool by_user) { 78 void FakeMessageCenter::RemoveAllVisibleNotifications(bool by_user) {
|
fake_message_center.h | 41 virtual void RemoveNotification(const std::string& id, bool by_user) OVERRIDE; 42 virtual void RemoveAllNotifications(bool by_user) OVERRIDE; 43 virtual void RemoveAllVisibleNotifications(bool by_user) OVERRIDE;
|
message_center.h | 97 virtual void RemoveNotification(const std::string& id, bool by_user) = 0; 98 virtual void RemoveAllNotifications(bool by_user) = 0; 99 virtual void RemoveAllVisibleNotifications(bool by_user) = 0;
|
message_center_observer.h | 28 bool by_user) {}
|
message_center_impl.cc | 63 bool by_user() const { return by_user_; } function in class:message_center::internal::ChangeQueue::Change 64 void set_by_user(bool by_user) { by_user_ = by_user; } 98 void EraseNotification(const std::string& id, bool by_user); 171 change->by_user()); 195 void ChangeQueue::EraseNotification(const std::string& id, bool by_user) { 198 change->set_by_user(by_user); 390 bool by_user) { 636 bool by_user) { 637 if (!by_user && notification_list_->is_message_center_visible()) [all...] |
message_center_impl.h | 93 virtual void OnNotificationRemoved(const std::string& id, bool by_user) 168 virtual void RemoveNotification(const std::string& id, bool by_user) OVERRIDE; 169 virtual void RemoveAllNotifications(bool by_user) OVERRIDE; 170 virtual void RemoveAllVisibleNotifications(bool by_user) OVERRIDE; 221 void RemoveNotifications(bool by_user, const NotificationBlockers& blockers);
|
/external/chromium_org/ui/message_center/views/ |
message_center_controller.h | 25 bool by_user) = 0;
|
message_center_view.h | 80 bool by_user) OVERRIDE; 86 bool by_user) OVERRIDE;
|
/external/chromium_org/chrome/browser/notifications/ |
notification_object_proxy.cc | 38 void NotificationObjectProxy::Close(bool by_user) { 39 delegate_->NotificationClosed(by_user);
|
notification_test_util.h | 27 virtual void Close(bool by_user) OVERRIDE {} 66 virtual void Close(bool by_user) OVERRIDE { 67 if (by_user)
|
notification_object_proxy.h | 31 virtual void Close(bool by_user) OVERRIDE;
|
message_center_stats_collector.h | 68 bool by_user) OVERRIDE;
|
/external/chromium_org/chrome/browser/ui/cocoa/apps/ |
quit_with_apps_controller_mac.h | 25 virtual void Close(bool by_user) OVERRIDE;
|
quit_with_apps_controller_mac.cc | 77 void QuitWithAppsController::Close(bool by_user) { 78 if (by_user)
|
/external/chromium_org/chrome/browser/notifications/sync_notifier/ |
chrome_notifier_delegate.cc | 25 void ChromeNotifierDelegate::Close(bool by_user) { 26 if (by_user) 29 CollectAction(by_user ?
|
welcome_delegate.h | 28 virtual void Close(bool by_user) OVERRIDE;
|
chrome_notifier_delegate.h | 45 virtual void Close(bool by_user) OVERRIDE;
|
/external/chromium_org/chrome/browser/chromeos/net/ |
network_portal_notification_controller.cc | 58 virtual void Close(bool by_user) OVERRIDE; 83 void NetworkPortalNotificationControllerDelegate::Close(bool by_user) { 87 by_user
|
/external/chromium_org/content/renderer/ |
notification_provider.h | 43 void OnClose(int id, bool by_user);
|
/external/chromium_org/ash/system/locale/ |
locale_notification_controller.cc | 37 virtual void Close(bool by_user) OVERRIDE; 63 void LocaleNotificationDelegate::Close(bool by_user) {
|
/external/chromium_org/chrome/browser/sync/ |
sync_error_notifier_ash.cc | 49 virtual void Close(bool by_user) OVERRIDE; 84 void SyncNotificationDelegate::Close(bool by_user) {
|
/external/chromium_org/ash/system/chromeos/bluetooth/ |
bluetooth_notification_controller.cc | 63 virtual void Close(bool by_user) OVERRIDE; 102 void BluetoothPairingNotificationDelegate::Close(bool by_user) { 103 VLOG(1) << "Pairing notification closed. by_user = " << by_user; 105 if (!by_user) 139 kBluetoothDevicePairingNotificationId, false /* by_user */); 171 kBluetoothDeviceDiscoverableNotificationId, false /* by_user */); 348 kBluetoothDevicePairingNotificationId, false /* by_user */);
|