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

1 2 3 4 5 6 7 8 9

  /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_ui_manager.cc 14 #include "chrome/browser/notifications/notification.h"
25 // A class which represents a notification waiting to be shown.
28 QueuedNotification(const Notification& notification, Profile* profile)
29 : notification_(notification),
33 const Notification& notification() const { return notification_; } function in class:QueuedNotification
36 void Replace(const Notification& new_notification) {
41 // The notification to be shown.
42 Notification notification_
    [all...]
balloon.cc 9 #include "chrome/browser/notifications/notification.h"
14 Balloon::Balloon(const Notification& notification, Profile* profile,
17 notification_(new Notification(notification)),
46 void Balloon::Update(const Notification& notification) {
48 notification_.reset(new Notification(notification));
balloon_collection_base.cc 9 #include "chrome/browser/notifications/notification.h"
41 if ((*iter)->notification().notification_id() == id)
57 if ((*iter)->notification().origin_url() == source_origin)
76 const Notification& notification) {
79 if ((*iter)->notification().notification_id() ==
80 notification.notification_id()) {
  /external/webkit/Source/WebKit/qt/WebCoreSupport/
NotificationPresenterClientQt.cpp 92 Notification* notification = NotificationPresenterClientQt::notificationPresenter()->notificationForWrapper(this); local
93 if (notification)
94 return notification->contents().title();
102 Notification* notification = NotificationPresenterClientQt::notificationPresenter()->notificationForWrapper(this); local
103 if (notification)
104 return notification->contents().body();
113 Notification* notification = NotificationPresenterClientQt::notificationPresenter()->notificationForWrapper(this) local
126 Notification* notification = NotificationPresenterClientQt::notificationPresenter()->notificationForWrapper(this); local
258 Notification* notification = notificationForWrapper(wrapper); local
265 Notification* notification = notificationForWrapper(wrapper); local
279 Notification* notification = 0; local
    [all...]
  /external/webkit/Tools/DumpRenderTree/chromium/
NotificationPresenter.cpp 47 static WebString identifierForNotification(const WebNotification& notification)
49 if (notification.isHTML())
50 return notification.url().spec().utf16();
51 return notification.title();
56 WebNotification* notification = static_cast<WebNotification*>(context); local
57 notification->dispatchDisplayEvent();
58 delete notification;
74 const WebNotification& notification = m_activeNotifications.find(id)->second; local
75 WebNotification eventTarget(notification);
81 bool NotificationPresenter::show(const WebNotification& notification)
    [all...]
  /external/chromium/chrome/browser/chromeos/notifications/
balloon_collection_impl.cc 13 #include "chrome/browser/notifications/notification.h"
40 void BalloonCollectionImpl::Add(const Notification& notification,
42 Balloon* new_balloon = MakeBalloon(notification, profile);
53 const Notification& notification,
56 Balloon* balloon = FindBalloon(notification);
67 const Notification& notification,
72 Balloon* new_balloon = new Balloon(notification, profile, this)
    [all...]
balloon_collection_impl.h 28 // A balloon collection represents a set of notification balloons being
29 // shown in the chromeos notification panel. Unlike other platforms,
30 // chromeos shows the all notifications in the notification panel, and
48 // Resize notification from webkit.
62 virtual void Add(const Notification& notification,
81 // there is no notification that matches NotificationDelegate::id(),
84 bool AddWebUIMessageCallback(const Notification& notification,
88 // Adds new system notification
    [all...]
  /external/webkit/Tools/DumpRenderTree/win/
DRTDesktopNotificationPresenter.cpp 72 /* [in] */ IWebDesktopNotification* notification)
77 if (!notification->isHTML(&html) && html) {
78 notification->contentsURL(&url);
79 printf("DESKTOP NOTIFICATION: contents at %S\n", url ? url : L"");
81 notification->iconURL(&url);
82 notification->title(&title);
83 notification->text(&text);
84 printf("DESKTOP NOTIFICATION: icon %S, title %S, text %S\n",
90 // In this stub implementation, the notification is displayed immediately;
92 notification->notifyDisplay()
    [all...]
DRTDesktopNotificationPresenter.h 47 /* [in] */ IWebDesktopNotification* notification);
50 /* [in] */ IWebDesktopNotification* notification);
53 /* [in] */ IWebDesktopNotification* notification);
  /frameworks/base/core/java/com/android/internal/statusbar/
StatusBarNotification.java 19 import android.app.Notification;
26 boolean clearable = !n.ongoingEvent && ((notification.flags & Notification.FLAG_NO_CLEAR) == 0);
48 public Notification notification; field in class:StatusBarNotification
55 int uid, int initialPid, Notification notification) {
57 if (notification == null) throw new NullPointerException();
64 this.notification = notification;
    [all...]
IStatusBar.aidl 27 void addNotification(IBinder key, in StatusBarNotification notification);
28 void updateNotification(IBinder key, in StatusBarNotification notification);
  /external/webkit/Tools/DumpRenderTree/
StorageTrackerDelegate.h 34 - (void)originModified:(NSNotification *)notification;
  /external/webkit/Source/WebKit/chromium/src/
NotificationPresenterImpl.cpp 37 #include "Notification.h"
80 bool NotificationPresenterImpl::show(Notification* notification)
82 return m_presenter->show(PassRefPtr<Notification>(notification));
85 void NotificationPresenterImpl::cancel(Notification* notification)
87 m_presenter->cancel(PassRefPtr<Notification>(notification));
90 void NotificationPresenterImpl::notificationObjectDestroyed(Notification* notification
    [all...]
  /packages/apps/Mms/src/com/android/mms/transaction/
SimFullReceiver.java 23 import android.app.Notification;
33 * Receive Intent.SIM_FULL_ACTION. Handle notification that SIM is full.
52 Notification notification = new Notification(); local
53 notification.icon = R.drawable.stat_sys_no_sim;
54 notification.tickerText = context.getString(R.string.sim_full_title);
55 notification.defaults = Notification.DEFAULT_ALL;
57 notification.setLatestEventInfo
    [all...]
SmsRejectedReceiver.java 21 import android.app.Notification;
33 * Receive Intent.SMS_REJECTED. Handle notification that received SMS messages are being
64 Notification notification = new Notification(); local
67 notification.icon = R.drawable.stat_sys_no_sim;
77 notification.tickerText = context.getString(titleId);
78 notification.defaults = Notification.DEFAULT_ALL;
80 notification.setLatestEventInfo
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
NotificationData.java 19 import android.app.Notification;
35 public StatusBarNotification notification; field in class:NotificationData.Entry
44 this.notification = n;
51 final StatusBarNotification na = a.notification;
52 final StatusBarNotification nb = b.notification;
56 : (int)(na.notification.when - nb.notification.when);
89 public int add(IBinder key, StatusBarNotification notification, View row, View content,
93 entry.notification = notification;
    [all...]
  /external/webkit/Source/WebKit/mac/WebView/
WebEditingDelegate.h 51 - (void)webViewDidBeginEditing:(NSNotification *)notification;
52 - (void)webViewDidChange:(NSNotification *)notification;
53 - (void)webViewDidEndEditing:(NSNotification *)notification;
54 - (void)webViewDidChangeTypingStyle:(NSNotification *)notification;
55 - (void)webViewDidChangeSelection:(NSNotification *)notification;
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8NotificationCenterCustom.cpp 37 #include "Notification.h"
56 RefPtr<Notification> notification = notificationCenter->createHTMLNotification(url, ec); local
61 notification->ref();
62 return toV8(notification.get());
71 RefPtr<Notification> notification = notificationCenter->createNotification(toWebCoreString(args[0]), toWebCoreString(args[1]), toWebCoreString(args[2]), ec); local
76 notification->ref();
77 return toV8(notification.get());
  /frameworks/base/core/java/android/app/
INotificationManager.aidl 21 import android.app.Notification;
28 void enqueueNotification(String pkg, int id, in Notification notification, inout int[] idReceived);
35 void enqueueNotificationWithTag(String pkg, String tag, int id, in Notification notification, inout int[] idReceived);
36 void enqueueNotificationWithTagPriority(String pkg, String tag, int id, int priority, in Notification notification, inout int[] idReceived);
NotificationManager.java 45 * unspecified. This pair identifies this notification from your app to the
48 * a new set of notification parameters, it will be updated. For example,
52 * this notification.
65 * @see android.app.Notification
81 IBinder b = ServiceManager.getService("notification");
92 * Post a notification to be shown in the status bar. If a notification with
96 * @param id An identifier for this notification unique within your
98 * @param notification A {@link Notification} object describing what to show the user. Must no
    [all...]
  /external/webkit/Source/WebKit/win/Interfaces/
IWebNotificationObserver.idl 45 HRESULT onNotify([in] IWebNotification* notification);
  /frameworks/base/services/java/com/android/server/
NotificationManagerService.java 25 import android.app.Notification;
103 // for enabling and disabling notification pulse behavior
149 final Notification notification; field in class:NotificationManagerService.NotificationRecord
153 Notification notification)
161 this.notification = notification;
166 pw.println(prefix + " icon=0x" + Integer.toHexString(notification.icon)
167 + " / " + idDebugString(baseContext, this.pkg, notification.icon))
    [all...]
  /external/chromium/chrome/browser/sync/notifier/
p2p_notifier.cc 93 VLOG(1) << "Sending XMPP notification...";
94 notifier::Notification notification; local
95 notification.channel = kSyncNotificationChannel;
96 notification.data = kSyncNotificationData;
97 talk_mediator_->SendNotification(notification);
109 const notifier::Notification& notification) {
111 VLOG(1) << "Sync received P2P notification.";
112 if (notification.channel != kSyncNotificationChannel)
    [all...]
  /external/webkit/Tools/DumpRenderTree/mac/
EditingDelegate.mm 157 - (void)webViewDidBeginEditing:(NSNotification *)notification
160 printf("EDITING DELEGATE: webViewDidBeginEditing:%s\n", [[notification name] UTF8String]);
163 - (void)webViewDidChange:(NSNotification *)notification
166 printf("EDITING DELEGATE: webViewDidChange:%s\n", [[notification name] UTF8String]);
169 - (void)webViewDidEndEditing:(NSNotification *)notification
172 printf("EDITING DELEGATE: webViewDidEndEditing:%s\n", [[notification name] UTF8String]);
175 - (void)webViewDidChangeTypingStyle:(NSNotification *)notification
178 printf("EDITING DELEGATE: webViewDidChangeTypingStyle:%s\n", [[notification name] UTF8String]);
181 - (void)webViewDidChangeSelection:(NSNotification *)notification
184 printf("EDITING DELEGATE: webViewDidChangeSelection:%s\n", [[notification name] UTF8String])
    [all...]

Completed in 327 milliseconds

1 2 3 4 5 6 7 8 9