/external/chromium/chrome/browser/notifications/ |
notification_test_util.cc | 16 void MockBalloonView::Close(bool by_user) { 17 balloon_->OnClose(by_user);
|
balloon.cc | 59 void Balloon::OnClose(bool by_user) { 60 notification_->Close(by_user); 66 // we simulate that with a script-initiated close but pass |by_user|=false.
|
notification_test_util.h | 25 virtual void Close(bool by_user) {} 58 virtual void Close(bool by_user) { 59 if (by_user) 85 virtual void Close(bool by_user);
|
notification_delegate.h | 27 // user explicitly (as opposed to timeout/script), |by_user| should be true. 28 virtual void Close(bool by_user) = 0;
|
notification_object_proxy.cc | 30 void NotificationObjectProxy::Close(bool by_user) { 32 route_id_, notification_id_, by_user));
|
notification.h | 45 void Close(bool by_user) const { delegate()->Close(by_user); }
|
notification_object_proxy.h | 32 virtual void Close(bool by_user);
|
/external/chromium_org/chrome/browser/notifications/ |
fake_balloon_view.cc | 23 void FakeBalloonView::Close(bool by_user) { 24 balloon_->OnClose(by_user);
|
notification_test_util.h | 23 virtual void Close(bool by_user) OVERRIDE {} 62 virtual void Close(bool by_user) OVERRIDE { 63 if (by_user)
|
balloon.cc | 68 void Balloon::OnClose(bool by_user) { 69 notification_->Close(by_user); 79 // we simulate that with a script-initiated close but pass |by_user|=false.
|
fake_balloon_view.h | 24 virtual void Close(bool by_user) OVERRIDE;
|
notification_object_proxy.cc | 43 void NotificationObjectProxy::Close(bool by_user) { 46 host->DesktopNotificationPostClose(notification_id_, by_user);
|
/external/chromium/chrome/browser/ui/cocoa/notifications/ |
balloon_view_bridge.mm | 20 void BalloonViewBridge::Close(bool by_user) { 21 [controller_ closeBalloon:by_user];
|
balloon_view_bridge.h | 28 virtual void Close(bool by_user);
|
/external/chromium_org/chrome/browser/ui/cocoa/notifications/ |
balloon_view_bridge.mm | 20 void BalloonViewBridge::Close(bool by_user) { 21 [controller_ closeBalloon:by_user];
|
balloon_view_bridge.h | 27 virtual void Close(bool by_user) OVERRIDE;
|
/external/chromium_org/chrome/browser/notifications/sync_notifier/ |
chrome_notifier_delegate.cc | 87 void ChromeNotifierDelegate::Close(bool by_user) { 88 if (by_user) 91 CollectAction(by_user ?
|
/external/chromium_org/ui/message_center/ |
fake_message_center.cc | 71 bool by_user) { 74 void FakeMessageCenter::RemoveAllNotifications(bool by_user) { 77 void FakeMessageCenter::RemoveAllVisibleNotifications(bool by_user) {
|
fake_message_center.h | 40 virtual void RemoveNotification(const std::string& id, bool by_user) OVERRIDE; 41 virtual void RemoveAllNotifications(bool by_user) OVERRIDE; 42 virtual void RemoveAllVisibleNotifications(bool by_user) OVERRIDE;
|
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;
|
notification_delegate.cc | 27 void HandleNotificationClickedDelegate::Close(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()); 194 void ChangeQueue::EraseNotification(const std::string& id, bool by_user) { 197 change->set_by_user(by_user); 387 bool by_user) { 624 bool by_user) { 625 if (!by_user && notification_list_->is_message_center_visible()) [all...] |
/external/chromium_org/ash/display/ |
resolution_notification_controller.cc | 45 virtual void Close(bool by_user) OVERRIDE; 73 void ResolutionChangeNotificationDelegate::Close(bool by_user) { 74 if (by_user) 200 message_center->RemoveNotification(kNotificationId, false /* by_user */); 256 kNotificationId, false /* by_user */); 265 kNotificationId, false /* by_user */);
|
/external/chromium_org/ash/system/locale/ |
locale_notification_controller.cc | 38 virtual void Close(bool by_user) OVERRIDE; 64 void LocaleNotificationDelegate::Close(bool by_user) {
|
/external/chromium_org/chrome/browser/chromeos/login/ |
multi_profile_first_run_notification.cc | 40 virtual void Close(bool by_user) OVERRIDE { 41 if (by_user)
|