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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/core/java/android/app/
Notification.aidl 19 parcelable Notification;
  /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...]
  /frameworks/base/core/java/com/android/internal/notification/
NotificationScorer.java 17 package com.android.internal.notification;
19 import android.app.Notification;
25 public int getScore(Notification notification, int score);
  /external/chromium_org/jingle/notifier/listener/
fake_push_client_observer.h 24 const Notification& notification) OVERRIDE;
27 const Notification& last_incoming_notification() const;
31 Notification last_incoming_notification_;
push_notifications_send_update_task.h 26 buzz::XmppTaskParentInterface* parent, const Notification& notification);
35 const Notification& notification, const buzz::Jid& to_jid_bare);
37 const Notification notification_;
fake_push_client_observer.cc 24 const Notification& notification) {
25 last_incoming_notification_ = notification;
33 const Notification&
notification_defines.cc 57 Notification::Notification() {}
58 Notification::~Notification() {}
60 bool Notification::Equals(const Notification& other) const {
67 std::string Notification::ToString() const {
fake_push_client.h 31 virtual void SendNotification(const Notification& notification) OVERRIDE;
41 void SimulateIncomingNotification(const Notification& notification);
46 const std::vector<Notification>& sent_notifications() const;
54 std::vector<Notification> sent_notifications_;
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;
notification_defines_unittest.cc 16 // Create a notification with binary data in the data field.
21 Notification notification; local
22 notification.data = kNonUtf8Data;
23 EXPECT_EQ("{ channel: \"\", data: \"\\u00FF\" }", notification.ToString());
push_client_observer.h 25 // disabled, and when a notification is received.
39 // Called when a notification is received. The details of the
40 // notification are in |notification|.
41 virtual void OnIncomingNotification(const Notification& notification) = 0;
  /external/chromium_org/chrome/browser/notifications/
notification_ui_manager.h 15 class Notification;
28 // Adds a notification to be displayed. Virtual for unit test override.
29 virtual void Add(const Notification& notification, Profile* profile) = 0;
31 // Updates an existing notification. If |update_progress_only|, assume
33 virtual bool Update(const Notification& notification, Profile* profile) = 0;
35 // Returns the pointer to a notification if it match the supplied ID, either
37 virtual const Notification* FindById(
44 // Adds the notification_id for each outstanding notification to the se
    [all...]
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...]
notification_ui_manager_impl.h 20 class Notification;
24 // The notification manager manages use of the desktop for notifications.
35 virtual void Add(const Notification& notification,
37 virtual bool Update(const Notification& notification,
39 virtual const Notification* FindById(
50 std::vector<const Notification*>* notifications);
53 // Attempts to pass a notification from a waiting queue to the subclass for
55 // notification right away. In that case it should invok
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/notifications/
NotificationClient.h 43 class Notification;
56 // Requests that a notification be shown.
57 virtual bool show(Notification*) = 0;
59 // Requests that a notification that has already been shown be canceled.
60 virtual void cancel(Notification*) = 0;
66 // Informs the presenter that a Notification object has been destroyed
68 // the notification, but must not attempt to call the event handlers.
69 virtual void notificationObjectDestroyed(Notification*) = 0;
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...]
  /frameworks/support/v4/honeycomb/android/support/v4/app/
NotificationCompatHoneycomb.java 19 import android.app.Notification;
26 static Notification add(Context context, Notification n,
30 Notification.Builder b = new Notification.Builder(context)
38 .setOngoing((n.flags & Notification.FLAG_ONGOING_EVENT) != 0)
39 .setOnlyAlertOnce((n.flags & Notification.FLAG_ONLY_ALERT_ONCE) != 0)
40 .setAutoCancel((n.flags & Notification.FLAG_AUTO_CANCEL) != 0)
48 (n.flags & Notification.FLAG_HIGH_PRIORITY) != 0)
  /frameworks/support/v4/ics/android/support/v4/app/
NotificationCompatIceCreamSandwich.java 19 import android.app.Notification;
26 static Notification add(Context context, Notification n,
31 Notification.Builder b = new Notification.Builder(context)
39 .setOngoing((n.flags & Notification.FLAG_ONGOING_EVENT) != 0)
40 .setOnlyAlertOnce((n.flags & Notification.FLAG_ONLY_ALERT_ONCE) != 0)
41 .setAutoCancel((n.flags & Notification.FLAG_AUTO_CANCEL) != 0)
49 (n.flags & Notification.FLAG_HIGH_PRIORITY) != 0)
  /external/chromium/chrome/browser/chromeos/notifications/
system_notification_factory.h 10 #include "chrome/browser/notifications/notification.h"
21 // Creates a system notification.
22 static Notification Create(
27 // Creates a system notification with a footer link.
28 static Notification Create(
  /frameworks/base/tests/StatusBar/src/com/android/statusbartest/
NotificationTestList.java 19 import android.app.Notification;
97 Notification n = new Notification();
119 Notification n = new Notification(R.drawable.icon1, null,
122 n.flags |= Notification.FLAG_ONGOING_EVENT;
132 Notification n = new Notification(R.drawable.icon1, null,
135 "This is a notification!!!", null);
144 Notification n = new Notification(R.drawable.icon1, "tick tick tick"
    [all...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowNotificationManager.java 3 import android.app.Notification;
17 private Map<Integer, Notification> notifications = new HashMap<Integer, Notification>();
21 public void notify(int id, Notification notification)
23 notify(null, id, notification);
27 public void notify(String tag, int id, Notification notification) {
31 notifications.put(id, notification);
61 public Notification getNotification(int id)
    [all...]
  /frameworks/base/tests/FrameworkPerf/src/com/android/frameworkperf/
SchedulerService.java 19 import android.app.Notification;
29 Notification status = new Notification(R.drawable.stat_happy, null,
31 status.flags |= Notification.FLAG_ONGOING_EVENT;

Completed in 482 milliseconds

1 2 3 4 5 6 7 8 91011>>