HomeSort by relevance Sort by last modified time
    Searched defs:Notification (Results 1 - 25 of 48) sorted by null

1 2

  /external/chromium/chrome/browser/notifications/
notification.cc 5 #include "chrome/browser/notifications/notification.h"
7 Notification::Notification(const GURL& origin_url,
19 Notification::Notification(const Notification& notification)
20 : origin_url_(notification.origin_url()),
21 content_url_(notification.content_url()),
22 display_source_(notification.display_source())
    [all...]
notification.h 17 // Representation of an notification to be shown to the user. All
20 class Notification {
22 Notification(const GURL& origin_url,
27 Notification(const Notification& notification);
28 ~Notification();
29 Notification& operator=(const Notification& notification);
    [all...]
  /external/chromium_org/chrome/browser/notifications/
notification.cc 5 #include "chrome/browser/notifications/notification.h"
12 Notification::Notification(const GURL& origin_url,
17 : message_center::Notification(message_center::NOTIFICATION_TYPE_SIMPLE,
32 Notification::Notification(const GURL& origin_url,
40 : message_center::Notification(message_center::NOTIFICATION_TYPE_SIMPLE,
59 Notification::Notification(
70 : message_center::Notification(type
    [all...]
notification.h 17 #include "ui/message_center/notification.h"
21 // Representation of a notification to be shown to the user.
25 class Notification : public message_center::Notification {
27 // Initializes a notification with HTML content.
28 Notification(const GURL& origin_url,
34 // Initializes a notification with text content. On non-ash platforms, this
36 Notification(const GURL& origin_url,
45 // Initializes a notification with text content and an icon image. Currently
47 Notification(const GURL& origin_url
    [all...]
  /external/chromium_org/ui/message_center/
notification.cc 5 #include "ui/message_center/notification.h"
44 Notification::Notification(NotificationType type,
67 Notification::Notification(const Notification& other)
82 Notification& Notification::operator=(const Notification& other) {
100 Notification::~Notification() {
    [all...]
notification.h 51 class MESSAGE_CENTER_EXPORT Notification {
53 Notification(NotificationType type,
63 Notification(const Notification& other);
64 Notification& operator=(const Notification& other);
65 virtual ~Notification();
69 void CopyState(Notification* base);
82 // A display string for the source of the notification.
143 // The notification with lesser serial_number is considered 'older'
    [all...]
  /external/chromium_org/jingle/notifier/listener/
notification_defines.cc 57 Notification::Notification() {}
58 Notification::~Notification() {}
60 bool Notification::Equals(const Notification& other) const {
67 std::string Notification::ToString() const {
notification_defines.h 48 struct Notification {
49 Notification();
50 ~Notification();
52 // The channel the notification is coming in on.
54 // Recipients for this notification (may be empty).
56 // The notification data payload.
59 bool Equals(const Notification& other) const;
  /external/chromium_org/chrome/browser/devtools/
devtools_protocol.cc 49 DevToolsProtocol::Notification::~Notification() {
52 DevToolsProtocol::Notification::Notification(const std::string& method,
66 DevToolsProtocol::Notification* DevToolsProtocol::ParseNotification(
81 return new Notification(method, params);
devtools_protocol.h 69 class Notification : public Message {
71 virtual ~Notification();
77 Notification(const std::string& method,
80 DISALLOW_COPY_AND_ASSIGN(Notification);
84 static Notification* ParseNotification(const std::string& json);
  /external/chromium_org/third_party/WebKit/Source/modules/notifications/
Notification.cpp 36 #include "modules/notifications/Notification.h"
57 Notification::Notification()
64 Notification::Notification(const String& title, const String& body, const String& iconURI, ScriptExecutionContext* context, ExceptionState& es, PassRefPtr<NotificationCenter> provider)
86 Notification::Notification(ScriptExecutionContext* context, const String& title)
90 , m_taskTimer(adoptPtr(new Timer<Notification>(this, &Notification::taskTimerFired)))
100 Notification::~Notification(
    [all...]
Notification.h 66 class Notification : public RefCounted<Notification>, public ScriptWrappable, public ActiveDOMObject, public EventTarget {
69 Notification();
71 static PassRefPtr<Notification> create(const String& title, const String& body, const String& iconURI, ScriptExecutionContext*, ExceptionState&, PassRefPtr<NotificationCenter> provider);
74 static PassRefPtr<Notification> create(ScriptExecutionContext*, const String& title, const Dictionary& options);
77 virtual ~Notification();
120 using RefCounted<Notification>::ref;
121 using RefCounted<Notification>::deref;
145 Notification(const String& title, const String& body, const String& iconURI, ScriptExecutionContext*, ExceptionState&, PassRefPtr<NotificationCenter>);
148 Notification(ScriptExecutionContext*, const String& title)
    [all...]
  /external/chromium/net/tools/flip_server/
acceptor_thread.h 28 class Notification {
30 explicit Notification(bool value) : value_(value) {}
88 Notification quitting_;
  /external/chromium_org/net/tools/flip_server/
acceptor_thread.h 29 class Notification {
31 explicit Notification(bool value) : value_(value) {}
91 Notification quitting_;
  /external/chromium_org/third_party/WebKit/Source/web/
WebNotification.cpp 40 #include "modules/notifications/Notification.h"
49 class WebNotificationPrivate : public Notification {
149 WebNotification::WebNotification(const WTF::PassRefPtr<Notification>& notification)
150 : m_private(static_cast<WebNotificationPrivate*>(notification.leakRef()))
154 WebNotification& WebNotification::operator=(const WTF::PassRefPtr<Notification>& notification)
156 assign(static_cast<WebNotificationPrivate*>(notification.leakRef()));
160 WebNotification::operator WTF::PassRefPtr<Notification>() const
162 return WTF::PassRefPtr<Notification>(const_cast<WebNotificationPrivate*>(m_private))
    [all...]
  /external/chromium_org/content/browser/devtools/
devtools_protocol.cc 141 DevToolsProtocol::Notification::Notification(const std::string& method,
146 DevToolsProtocol::Notification::~Notification() {
149 std::string DevToolsProtocol::Notification::Serialize() {
150 base::DictionaryValue notification; local
151 notification.SetString(kMethodParam, method_);
153 notification.Set(kParamsParam, params_->DeepCopy());
156 base::JSONWriter::Write(&notification, &json_notification);
188 scoped_refptr<DevToolsProtocol::Notification> notification local
    [all...]
devtools_protocol.h 106 class Notification : public Message {
113 virtual ~Notification();
116 Notification(const std::string& method,
119 DISALLOW_COPY_AND_ASSIGN(Notification);
140 // Sends notification to the client. Takes ownership of |params|.
160 static scoped_refptr<Notification> ParseNotification(
163 static scoped_refptr<Notification> CreateNotification(
  /cts/tests/tests/accessibilityservice/src/android/accessibilityservice/cts/
AccessibilityEndToEndTest.java 21 import android.app.Notification;
316 // create the notification to send
318 final Notification notification = new Notification(); local
319 notification.icon = android.R.drawable.stat_notify_call_mute;
320 notification.contentIntent = PendingIntent.getActivity(getActivity(), 0, new Intent(),
322 notification.tickerText = message;
323 notification.setLatestEventInfo(getActivity(), "", "", notification.contentIntent)
    [all...]
  /hardware/libhardware/tests/camera2/
camera2_utils.h 131 struct Notification {
132 Notification(int32_t type, int32_t e1, int32_t e2, int32_t e3):
145 List<Notification> mNotifications;
  /external/chromium_org/base/debug/
trace_event_impl.h 272 // Notification is a mask of one or more of the following events.
273 enum Notification {
352 // Set the thread-safe notification callback. The callback can occur at any
426 // For every matching event, a notification will be fired. NOTE: the
427 // notification will fire for each matching event that has already occurred
433 // watch event notification firing.
506 // notification callbacks. This is very similar to a reader-writer lock, but
507 // shares the lock with TraceLog and manages the notification flags.
514 // notification with any existing notifications.
515 inline void AddNotificationWhileLocked(int notification);
    [all...]
  /external/chromium_org/testing/gtest/include/gtest/internal/
gtest-port.h     [all...]
  /ndk/sources/third_party/googletest/googletest/include/gtest/internal/
gtest-port.h     [all...]
  /external/chromium_org/third_party/WebKit/Source/web/tests/
WebFrameTest.cpp 2187 ContextLifetimeTestWebFrameClient::Notification* notification = webFrameClient.createNotifications[0]; local
    [all...]
  /external/chromium/testing/gtest/include/gtest/internal/
gtest-port.h     [all...]
  /external/chromium_org/third_party/mesa/src/src/gtest/include/gtest/internal/
gtest-port.h     [all...]

Completed in 919 milliseconds

1 2