HomeSort by relevance Sort by last modified time
    Searched defs:Notification (Results 1 - 25 of 46) 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(
71 : 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/third_party/WebKit/Source/modules/notifications/
Notification.h 48 class Notification : public RefCounted<Notification>, public NotificationBase {
49 REFCOUNTED_EVENT_TARGET(Notification);
52 static PassRefPtr<Notification> create(ExecutionContext*, const String& title, const Dictionary& options);
54 virtual ~Notification();
67 Notification(ExecutionContext*, const String& title, NotificationClient*);
71 OwnPtr<AsyncMethodRunner<Notification> > m_asyncRunner;
Notification.cpp 33 #include "modules/notifications/Notification.h"
43 PassRefPtr<Notification> Notification::create(ExecutionContext* context, const String& title, const Dictionary& options)
46 RefPtr<Notification> notification(adoptRef(new Notification(context, title, client)));
50 notification->setBody(argument);
52 notification->setTag(argument);
54 notification->setLang(argument);
56 notification->setDir(argument)
    [all...]
  /external/chromium_org/ui/message_center/
notification.cc 5 #include "ui/message_center/notification.h"
51 Notification::Notification(NotificationType type,
74 Notification::Notification(const Notification& other)
89 Notification& Notification::operator=(const Notification& other) {
107 Notification::~Notification() {
    [all...]
notification.h 55 class MESSAGE_CENTER_EXPORT Notification {
57 Notification(NotificationType type,
67 Notification(const Notification& other);
68 Notification& operator=(const Notification& other);
69 virtual ~Notification();
73 void CopyState(Notification* base);
86 // A display string for the source of the notification.
159 // 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/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/content/browser/devtools/
devtools_protocol.h 107 class Notification : public Message {
114 virtual ~Notification();
117 Notification(const std::string& method,
120 DISALLOW_COPY_AND_ASSIGN(Notification);
141 // Sends notification to the client. Takes ownership of |params|.
169 static scoped_refptr<Notification> ParseNotification(
172 static scoped_refptr<Notification> CreateNotification(
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...]
  /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/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 2863 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...]
  /external/gtest/include/gtest/internal/
gtest-port.h     [all...]
  /external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-port.h     [all...]

Completed in 968 milliseconds

1 2