Home
last modified time | relevance | path

Searched refs:WebNotification (Results 1 – 21 of 21) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/web/
DWebNotification.cpp43 void WebNotification::reset() in reset()
48 void WebNotification::assign(const WebNotification& other) in assign()
53 bool WebNotification::equals(const WebNotification& other) const in equals()
58 bool WebNotification::lessThan(const WebNotification& other) const in lessThan()
63 WebString WebNotification::title() const in title()
68 WebTextDirection WebNotification::direction() const in direction()
75 WebString WebNotification::lang() const in lang()
80 WebString WebNotification::body() const in body()
85 WebString WebNotification::tag() const in tag()
90 WebURL WebNotification::iconURL() const in iconURL()
[all …]
Dweb.gypi194 'WebNotification.cpp',
Dblink_web.target.darwin-arm.mk215 third_party/WebKit/Source/web/WebNotification.cpp \
Dblink_web.target.linux-mips.mk215 third_party/WebKit/Source/web/WebNotification.cpp \
Dblink_web.target.linux-arm64.mk215 third_party/WebKit/Source/web/WebNotification.cpp \
Dblink_web.target.darwin-x86_64.mk215 third_party/WebKit/Source/web/WebNotification.cpp \
Dblink_web.target.linux-x86.mk215 third_party/WebKit/Source/web/WebNotification.cpp \
Dblink_web.target.darwin-arm64.mk215 third_party/WebKit/Source/web/WebNotification.cpp \
Dblink_web.target.linux-arm.mk215 third_party/WebKit/Source/web/WebNotification.cpp \
Dblink_web.target.darwin-x86.mk215 third_party/WebKit/Source/web/WebNotification.cpp \
Dblink_web.target.darwin-mips.mk215 third_party/WebKit/Source/web/WebNotification.cpp \
Dblink_web.target.linux-x86_64.mk215 third_party/WebKit/Source/web/WebNotification.cpp \
/external/chromium_org/third_party/WebKit/public/web/
DWebNotification.h50 class WebNotification {
52 WebNotification() { } in WebNotification() function
53 WebNotification(const WebNotification& other) { assign(other); } in WebNotification() function
54 WebNotification& operator=(const WebNotification& other)
60 ~WebNotification() { reset(); } in ~WebNotification()
63 BLINK_EXPORT void assign(const WebNotification&);
67 BLINK_EXPORT bool equals(const WebNotification& other) const;
68 BLINK_EXPORT bool lessThan(const WebNotification& other) const;
96 WebNotification(WebCore::Notification*);
97 WebNotification& operator=(WebCore::Notification*);
[all …]
DWebNotificationPresenter.h39 class WebNotification; variable
53 virtual bool show(const WebNotification&) = 0;
57 virtual void close(const WebNotification&) { } in close() argument
58 virtual void cancel(const WebNotification&) = 0;
62 virtual void objectDestroyed(const WebNotification&) = 0;
/external/chromium_org/content/renderer/
Dactive_notification_tracker.cc12 using blink::WebNotification;
22 const WebNotification& notification, int& id) { in GetId()
31 int id, WebNotification* notification) { in GetNotification()
32 WebNotification* lookup = notification_table_.Lookup(id); in GetNotification()
41 const blink::WebNotification& proxy) { in RegisterNotification()
46 WebNotification* notification = new WebNotification(proxy); in RegisterNotification()
55 scoped_ptr<WebNotification> notification(notification_table_.Lookup(id)); in UnregisterNotification()
Dactive_notification_tracker.h31 int RegisterNotification(const blink::WebNotification& notification);
33 bool GetId(const blink::WebNotification& notification, int& id);
34 bool GetNotification(int id, blink::WebNotification* notification);
46 typedef std::map<blink::WebNotification, int> ReverseTable;
49 IDMap<blink::WebNotification> notification_table_;
Dnotification_provider.cc18 using blink::WebNotification;
36 bool NotificationProvider::show(const WebNotification& notification) { in show()
51 void NotificationProvider::cancel(const WebNotification& notification) { in cancel()
60 const WebNotification& notification) { in objectDestroyed()
106 WebNotification notification; in OnDisplay()
115 WebNotification notification; in OnError()
124 WebNotification notification; in OnClose()
135 WebNotification notification; in OnClick()
Dactive_notification_tracker_unittest.cc13 blink::WebNotification notification1; in TEST()
16 blink::WebNotification notification2; in TEST()
19 blink::WebNotification result; in TEST()
Dnotification_provider.h32 virtual bool show(const blink::WebNotification& proxy);
33 virtual void cancel(const blink::WebNotification& proxy);
34 virtual void objectDestroyed(const blink::WebNotification& proxy);
/external/chromium_org/content/shell/renderer/test_runner/
Dnotification_presenter.cc17 using blink::WebNotification;
28 WebNotification* notification = static_cast<WebNotification*>(context); in DeferredDisplayDispatch()
50 const WebNotification& notification = iter->second; in SimulateClick()
52 WebNotification event_target(notification); in SimulateClick()
60 const WebNotification& notification = active_notifications_.begin()->second; in Reset()
68 bool NotificationPresenter::show(const WebNotification& notification) { in show()
108 new WebNotification(notification)); in show()
113 void NotificationPresenter::cancel(const WebNotification& notification) { in cancel()
119 WebNotification event_target(notification); in cancel()
126 const WebNotification& notification) { in objectDestroyed()
Dnotification_presenter.h37 virtual bool show(const blink::WebNotification& notification);
38 virtual void cancel(const blink::WebNotification& notification);
39 virtual void objectDestroyed(const blink::WebNotification& notification);
54 typedef std::map<std::string, blink::WebNotification> ActiveNotificationMap;