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

  /external/chromium_org/chrome/browser/notifications/
notification.cc 5 #include "chrome/browser/notifications/notification.h"
7 Notification::Notification(const GURL& origin_url,
15 : message_center::Notification(message_center::NOTIFICATION_TYPE_SIMPLE,
29 Notification::Notification(
41 : message_center::Notification(type,
57 Notification::Notification(const Notification& notification
    [all...]
notification.h 16 #include "ui/message_center/notification.h"
24 // Representation of a notification to be shown to the user.
28 class Notification : public message_center::Notification {
30 // Initializes a notification with text content. On non-ash platforms, this
32 Notification(const GURL& origin_url,
41 Notification(
54 Notification(const Notification& notification);
    [all...]
  /external/chromium_org/ui/message_center/
notification.cc 5 #include "ui/message_center/notification.h"
51 Notification::Notification(NotificationType type,
73 Notification::Notification(const Notification& other)
87 Notification& Notification::operator=(const Notification& other) {
104 Notification::~Notification() {
    [all...]
notification.h 55 class MESSAGE_CENTER_EXPORT Notification {
57 Notification(NotificationType type,
67 Notification(const Notification& other);
69 virtual ~Notification();
73 void CopyState(Notification* base);
78 // Uniquely identifies a notification in the message center. For
79 // notification front ends that support multiple profiles, this id should
91 // A display string for the source of the notification.
158 // 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/ui/file_manager/file_manager/background/js/
device_handler.js 43 * Notification type.
44 * @param {string} prefix Prefix of notification ID.
50 DeviceHandler.Notification = function(prefix, title, message, opt_buttonLabel) {
52 * Prefix of notification ID.
86 * @type {DeviceHandler.Notification}
89 DeviceHandler.Notification.DEVICE_NAVIGATION = new DeviceHandler.Notification(
96 * @type {DeviceHandler.Notification}
99 DeviceHandler.Notification.DEVICE_FAIL = new DeviceHandler.Notification(
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/notifications/
Notification.cpp 32 #include "modules/notifications/Notification.h"
45 Notification* Notification::create(ExecutionContext* context, const String& title, const NotificationOptions& options)
48 Notification* notification = adoptRefCountedGarbageCollectedWillBeNoop(new Notification(title, context, &client)); local
50 notification->setBody(options.body());
51 notification->setTag(options.tag());
52 notification->setLang(options.lang());
53 notification->setDir(options.dir())
    [all...]
Notification.h 50 class Notification : public RefCountedGarbageCollectedWillBeGarbageCollectedFinalized<Notification>, public ActiveDOMObject, public EventTargetWithInlineData {
51 DEFINE_EVENT_TARGET_REFCOUNTING_WILL_BE_REMOVED(RefCountedGarbageCollected<Notification>);
53 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(Notification);
55 static Notification* create(ExecutionContext*, const String& title, const NotificationOptions&);
57 virtual ~Notification();
95 Notification(const String& title, ExecutionContext*, NotificationClient*);
129 AsyncMethodRunner<Notification> m_asyncRunner;
  /external/chromium_org/chrome/browser/devtools/
devtools_protocol.cc 73 DevToolsProtocol::Notification::~Notification() {
76 DevToolsProtocol::Notification::Notification(const std::string& method,
139 DevToolsProtocol::Notification* DevToolsProtocol::ParseNotification(
154 return new Notification(method, params);
devtools_protocol.h 81 class Notification : public Message {
83 virtual ~Notification();
89 Notification(const std::string& method,
92 DISALLOW_COPY_AND_ASSIGN(Notification);
99 static Notification* ParseNotification(const std::string& json);
  /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 110 class Notification : public Message {
117 virtual ~Notification();
120 Notification(const std::string& method,
123 DISALLOW_COPY_AND_ASSIGN(Notification);
144 // Sends notification to the client. Takes ownership of |params|.
183 static scoped_refptr<Notification> ParseNotification(
186 static scoped_refptr<Notification> CreateNotification(
devtools_protocol.cc 150 DevToolsProtocol::Notification::Notification(const std::string& method,
155 DevToolsProtocol::Notification::~Notification() {
158 std::string DevToolsProtocol::Notification::Serialize() {
159 base::DictionaryValue notification; local
160 notification.SetString(kMethodParam, method_);
162 notification.Set(kParamsParam, params_->DeepCopy());
165 base::JSONWriter::Write(&notification, &json_notification);
197 scoped_refptr<DevToolsProtocol::Notification> notification local
    [all...]
  /cts/tests/tests/accessibilityservice/src/android/accessibilityservice/cts/
AccessibilityEndToEndTest.java 21 import android.app.Notification;
314 // create the notification to send
316 final Notification notification = new Notification(); local
317 notification.icon = android.R.drawable.stat_notify_call_mute;
318 notification.contentIntent = PendingIntent.getActivity(getActivity(), 0, new Intent(),
320 notification.tickerText = message;
321 notification.setLatestEventInfo(getActivity(), "", "", notification.contentIntent)
    [all...]
  /external/chromium_org/testing/gtest/src/
gtest-port.cc 181 Notification::Notification()
189 void Notification::Notify() {
193 void Notification::WaitForNotification() {
288 Notification* thread_can_start) {
309 ThreadMainParam(Runnable* runnable, Notification* thread_can_start)
315 Notification* thread_can_start_;
336 Notification* thread_can_start)
    [all...]
  /external/gtest/include/gtest/internal/
gtest-port.h     [all...]
  /external/chromium_org/testing/gtest/include/gtest/internal/
gtest-port.h     [all...]
  /external/chromium_org/third_party/WebKit/Source/web/tests/
WebFrameTest.cpp 2965 ContextLifetimeTestWebFrameClient::Notification* notification = webFrameClient.createNotifications[0]; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gtest/include/gtest/internal/
gtest-port.h     [all...]
  /external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-port.h     [all...]
  /external/mesa3d/src/gtest/include/gtest/internal/
gtest-port.h     [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/third_party/googletest/src/include/gtest/
gtest.h     [all...]
  /external/libvpx/libvpx/third_party/googletest/src/include/gtest/
gtest.h     [all...]
  /external/chromium_org/third_party/libaddressinput/src/java/
android.jar 

Completed in 1673 milliseconds