HomeSort by relevance Sort by last modified time
    Searched refs:WebNotification (Results 1 - 20 of 20) sorted by null

  /external/chromium_org/third_party/WebKit/Source/web/
WebNotification.cpp 32 #include "public/web/WebNotification.h"
43 void WebNotification::reset()
48 void WebNotification::assign(const WebNotification& other)
53 bool WebNotification::equals(const WebNotification& other) const
58 bool WebNotification::lessThan(const WebNotification& other) const
63 WebString WebNotification::title() const
68 WebTextDirection WebNotification::direction() cons
    [all...]
blink_web.target.darwin-arm.mk 215 third_party/WebKit/Source/web/WebNotification.cpp \
blink_web.target.darwin-arm64.mk 215 third_party/WebKit/Source/web/WebNotification.cpp \
blink_web.target.darwin-mips.mk 215 third_party/WebKit/Source/web/WebNotification.cpp \
blink_web.target.darwin-x86.mk 215 third_party/WebKit/Source/web/WebNotification.cpp \
blink_web.target.darwin-x86_64.mk 215 third_party/WebKit/Source/web/WebNotification.cpp \
blink_web.target.linux-arm.mk 215 third_party/WebKit/Source/web/WebNotification.cpp \
blink_web.target.linux-arm64.mk 215 third_party/WebKit/Source/web/WebNotification.cpp \
blink_web.target.linux-mips.mk 215 third_party/WebKit/Source/web/WebNotification.cpp \
blink_web.target.linux-x86.mk 215 third_party/WebKit/Source/web/WebNotification.cpp \
blink_web.target.linux-x86_64.mk 215 third_party/WebKit/Source/web/WebNotification.cpp \
  /external/chromium_org/third_party/WebKit/public/web/
WebNotificationPresenter.h 39 class WebNotification;
53 virtual bool show(const WebNotification&) = 0;
57 virtual void close(const WebNotification&) { }
58 virtual void cancel(const WebNotification&) = 0;
62 virtual void objectDestroyed(const WebNotification&) = 0;
WebNotification.h 50 class WebNotification {
52 WebNotification() { }
53 WebNotification(const WebNotification& other) { assign(other); }
54 WebNotification& operator=(const WebNotification& other)
60 ~WebNotification() { reset(); }
63 BLINK_EXPORT void assign(const WebNotification&);
65 // Operators required to put WebNotification in an std::map. Mind that the
67 BLINK_EXPORT bool equals(const WebNotification& other) const
    [all...]
  /external/chromium_org/content/renderer/
active_notification_tracker.h 14 #include "third_party/WebKit/public/web/WebNotification.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_;
active_notification_tracker_unittest.cc 13 blink::WebNotification notification1;
16 blink::WebNotification notification2;
19 blink::WebNotification result;
active_notification_tracker.cc 9 #include "third_party/WebKit/public/web/WebNotification.h"
12 using blink::WebNotification;
22 const WebNotification& notification, int& id) {
31 int id, WebNotification* notification) {
32 WebNotification* lookup = notification_table_.Lookup(id);
41 const blink::WebNotification& proxy) {
46 WebNotification* notification = new WebNotification(proxy);
55 scoped_ptr<WebNotification> notification(notification_table_.Lookup(id));
notification_provider.h 10 #include "third_party/WebKit/public/web/WebNotification.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);
notification_provider.cc 18 using blink::WebNotification;
36 bool NotificationProvider::show(const WebNotification& notification) {
51 void NotificationProvider::cancel(const WebNotification& notification) {
60 const WebNotification& notification) {
106 WebNotification notification;
108 // |found| may be false if the WebNotification went out of scope in
115 WebNotification notification;
117 // |found| may be false if the WebNotification went out of scope in
124 WebNotification notification;
126 // |found| may be false if the WebNotification went out of scope i
    [all...]
  /external/chromium_org/content/shell/renderer/test_runner/
notification_presenter.h 12 #include "third_party/WebKit/public/web/WebNotification.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;
notification_presenter.cc 17 using blink::WebNotification;
28 WebNotification* notification = static_cast<WebNotification*>(context);
50 const WebNotification& notification = iter->second;
52 WebNotification event_target(notification);
60 const WebNotification& notification = active_notifications_.begin()->second;
68 bool NotificationPresenter::show(const WebNotification& notification) {
85 // TODO(beverloo): WebNotification should expose the "lang" attribute's value.
108 new WebNotification(notification));
113 void NotificationPresenter::cancel(const WebNotification& notification)
    [all...]

Completed in 322 milliseconds