/external/chromium_org/third_party/WebKit/Source/web/ |
D | WebNotification.cpp | 43 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 …]
|
D | web.gypi | 194 'WebNotification.cpp',
|
D | blink_web.target.darwin-arm.mk | 215 third_party/WebKit/Source/web/WebNotification.cpp \
|
D | blink_web.target.linux-mips.mk | 215 third_party/WebKit/Source/web/WebNotification.cpp \
|
D | blink_web.target.linux-arm64.mk | 215 third_party/WebKit/Source/web/WebNotification.cpp \
|
D | blink_web.target.darwin-x86_64.mk | 215 third_party/WebKit/Source/web/WebNotification.cpp \
|
D | blink_web.target.linux-x86.mk | 215 third_party/WebKit/Source/web/WebNotification.cpp \
|
D | blink_web.target.darwin-arm64.mk | 215 third_party/WebKit/Source/web/WebNotification.cpp \
|
D | blink_web.target.linux-arm.mk | 215 third_party/WebKit/Source/web/WebNotification.cpp \
|
D | blink_web.target.darwin-x86.mk | 215 third_party/WebKit/Source/web/WebNotification.cpp \
|
D | blink_web.target.darwin-mips.mk | 215 third_party/WebKit/Source/web/WebNotification.cpp \
|
D | blink_web.target.linux-x86_64.mk | 215 third_party/WebKit/Source/web/WebNotification.cpp \
|
/external/chromium_org/third_party/WebKit/public/web/ |
D | WebNotification.h | 50 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 …]
|
D | WebNotificationPresenter.h | 39 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/ |
D | active_notification_tracker.cc | 12 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()
|
D | active_notification_tracker.h | 31 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_;
|
D | notification_provider.cc | 18 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()
|
D | active_notification_tracker_unittest.cc | 13 blink::WebNotification notification1; in TEST() 16 blink::WebNotification notification2; in TEST() 19 blink::WebNotification result; in TEST()
|
D | notification_provider.h | 32 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/ |
D | notification_presenter.cc | 17 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()
|
D | notification_presenter.h | 37 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;
|