OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:by_user
(Results
1 - 25
of
88
) sorted by null
1
2
3
4
/external/chromium/chrome/browser/notifications/
notification_test_util.cc
16
void MockBalloonView::Close(bool
by_user
) {
17
balloon_->OnClose(
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_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.h
45
void Close(bool
by_user
) const { delegate()->Close(
by_user
); }
notification_object_proxy.cc
30
void NotificationObjectProxy::Close(bool
by_user
) {
32
route_id_, notification_id_,
by_user
));
notification_object_proxy.h
32
virtual void Close(bool
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.
/external/chromium_org/chrome/browser/notifications/
fake_balloon_view.cc
23
void FakeBalloonView::Close(bool
by_user
) {
24
balloon_->OnClose(
by_user
);
fake_balloon_view.h
24
virtual void Close(bool
by_user
) OVERRIDE;
notification_object_proxy.h
26
virtual void Close(bool
by_user
) OVERRIDE;
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.
/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;
notification_delegate.cc
27
void HandleNotificationClickedDelegate::Close(bool
by_user
) {
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;
message_center.h
88
virtual void RemoveNotification(const std::string& id, bool
by_user
) = 0;
89
virtual void RemoveAllNotifications(bool
by_user
) = 0;
90
virtual void RemoveAllVisibleNotifications(bool
by_user
) = 0;
message_center_observer.h
28
bool
by_user
) {}
/external/chromium/chrome/browser/ui/cocoa/notifications/
balloon_view_bridge.h
28
virtual void Close(bool
by_user
);
/external/chromium_org/chrome/browser/ui/cocoa/notifications/
balloon_view_bridge.h
27
virtual void Close(bool
by_user
) OVERRIDE;
/external/chromium_org/ui/message_center/views/
message_center_controller.h
22
bool
by_user
) = 0;
/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/chrome/browser/chromeos/notifications/
balloon_view.h
55
virtual void Close(bool
by_user
);
98
void DelayedClose(bool
by_user
);
/external/chromium/chrome/browser/ui/gtk/notifications/
balloon_view_gtk.h
50
virtual void Close(bool
by_user
);
69
void DelayedClose(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
)
Completed in 1102 milliseconds
1
2
3
4