Searched refs:notification (Results 1 - 25 of 163) sorted by relevance

1234567

/external/chromium/chrome/browser/notifications/
H A Dnotification.cc5 #include "chrome/browser/notifications/notification.h"
19 Notification::Notification(const Notification& notification) argument
20 : origin_url_(notification.origin_url()),
21 content_url_(notification.content_url()),
22 display_source_(notification.display_source()),
23 replace_id_(notification.replace_id()),
24 delegate_(notification.delegate()) {
29 Notification& Notification::operator=(const Notification& notification) { argument
30 origin_url_ = notification.origin_url();
31 content_url_ = notification
[all...]
H A Dnotification_ui_manager.cc14 #include "chrome/browser/notifications/notification.h"
25 // A class which represents a notification waiting to be shown.
28 QueuedNotification(const Notification& notification, Profile* profile) argument
29 : notification_(notification),
33 const Notification& notification() const { return notification_; } function in class:QueuedNotification
41 // The notification to be shown.
93 void NotificationUIManager::Add(const Notification& notification, argument
95 if (TryReplacement(notification)) {
99 VLOG(1) << "Added notification. URL: "
100 << notification
180 TryReplacement(const Notification& notification) argument
[all...]
H A Dballoon.cc9 #include "chrome/browser/notifications/notification.h"
14 Balloon::Balloon(const Notification& notification, Profile* profile, argument
17 notification_(new Notification(notification)),
46 void Balloon::Update(const Notification& notification) { argument
48 notification_.reset(new Notification(notification));
H A Dballoon_collection_base.cc9 #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()) {
75 FindBalloon( const Notification& notification) argument
H A Dnotification.h17 // Representation of an notification to be shown to the user. All
27 Notification(const Notification& notification);
29 Notification& operator=(const Notification& notification);
31 // The URL (may be data:) containing the contents for the notification.
34 // The origin URL of the script which requested the notification.
37 // A display string for the source of the notification.
52 // The Origin of the page/worker which created this notification.
59 // The display string for the source of the notification. Could be
63 // The replace ID for the notification.
67 // represents the notification, fo
[all...]
/external/webkit/Source/WebKit/qt/WebCoreSupport/
H A DNotificationPresenterClientQt.cpp92 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
114 if (notification) {
115 if (notification->iconData())
116 iconData = QByteArray::fromRawData(notification
126 Notification* notification = NotificationPresenterClientQt::notificationPresenter()->notificationForWrapper(this); local
172 show(Notification* notification) argument
190 displayNotification(Notification* notification, const QByteArray& bytes) argument
240 cancel(Notification* notification) argument
258 Notification* notification = notificationForWrapper(wrapper); local
265 Notification* notification = notificationForWrapper(wrapper); local
279 Notification* notification = 0; local
306 notificationObjectDestroyed(Notification* notification) argument
383 sendEvent(Notification* notification, const AtomicString& eventName) argument
389 removeReplacedNotificationFromQueue(Notification* notification) argument
412 detachNotification(Notification* notification) argument
419 dumpReplacedIdText(Notification* notification) argument
425 dumpShowText(Notification* notification) argument
[all...]
/external/webkit/Tools/DumpRenderTree/chromium/
H A DNotificationPresenter.cpp47 static WebString identifierForNotification(const WebNotification& notification) argument
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) argument
114 cancel(const WebNotification& notification) argument
125 objectDestroyed(const WebKit::WebNotification& notification) argument
[all...]
/external/webkit/Tools/DumpRenderTree/win/
H A DDRTDesktopNotificationPresenter.cpp72 /* [in] */ IWebDesktopNotification* notification)
77 if (!notification->isHTML(&html) && html) {
78 notification->contentsURL(&url);
81 notification->iconURL(&url);
82 notification->title(&title);
83 notification->text(&text);
90 // In this stub implementation, the notification is displayed immediately;
92 notification->notifyDisplay();
98 /* [in] */ IWebDesktopNotification* notification)
102 notification
71 showDesktopNotification( IWebDesktopNotification* notification) argument
97 cancelDesktopNotification( IWebDesktopNotification* notification) argument
114 notificationDestroyed( IWebDesktopNotification* notification) argument
[all...]
H A DDRTDesktopNotificationPresenter.h47 /* [in] */ IWebDesktopNotification* notification);
50 /* [in] */ IWebDesktopNotification* notification);
53 /* [in] */ IWebDesktopNotification* notification);
/external/chromium/chrome/browser/chromeos/notifications/
H A Dballoon_collection_impl.cc13 #include "chrome/browser/notifications/notification.h"
40 void BalloonCollectionImpl::Add(const Notification& notification, argument
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);
85 const Notification& notification) {
86 Balloon* balloon = FindBalloon(notification);
89 balloon->Update(notification);
52 AddWebUIMessageCallback( const Notification& notification, const std::string& message, MessageCallback* callback) argument
66 AddSystemNotification( const Notification& notification, Profile* profile, bool sticky, bool control) argument
84 UpdateNotification( const Notification& notification) argument
94 UpdateAndShowNotification( const Notification& notification) argument
157 MakeBalloon(const Notification& notification, Profile* profile) argument
[all...]
H A Dballoon_collection_impl.h28 // 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.
89 // |sticky| is used to indicate that the notification
92 void AddSystemNotification(const Notification& notification,
131 FindBalloon(const Notification& notification) argument
[all...]
/external/webkit/Tools/DumpRenderTree/
H A DStorageTrackerDelegate.h34 - (void)originModified:(NSNotification *)notification;
/external/webkit/Source/WebKit/chromium/src/
H A DNotificationPresenterImpl.cpp80 bool NotificationPresenterImpl::show(Notification* notification) argument
82 return m_presenter->show(PassRefPtr<Notification>(notification));
85 void NotificationPresenterImpl::cancel(Notification* notification) argument
87 m_presenter->cancel(PassRefPtr<Notification>(notification));
90 void NotificationPresenterImpl::notificationObjectDestroyed(Notification* notification) argument
92 m_presenter->objectDestroyed(PassRefPtr<Notification>(notification));
/external/webkit/LayoutTests/dom/xhtml/level3/core/
H A Duserdatahandler01.js98 var notification;
132 notification = notifications[indexN1009E];
133 operation = notification.operation;
135 key = notification.key;
136 data = notification.data;
152 src = notification.src;
154 dst = notification.dst;
H A Duserdatahandler02.js98 var notification;
132 notification = notifications[indexN1009C];
133 operation = notification.operation;
135 key = notification.key;
136 data = notification.data;
152 src = notification.src;
154 dst = notification.dst;
H A Duserdatahandler03.js98 var notification;
147 notification = notifications[indexN100CE];
148 operation = notification.operation;
150 key = notification.key;
151 data = notification.data;
167 src = notification.src;
169 dst = notification.dst;
H A Duserdatahandler04.js98 var notification;
147 notification = notifications[indexN100CD];
148 operation = notification.operation;
150 key = notification.key;
151 data = notification.data;
167 src = notification.src;
169 dst = notification.dst;
/external/webkit/Source/WebKit/mac/WebView/
H A DWebEditingDelegate.h51 - (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/
H A DV8NotificationCenterCustom.cpp56 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());
/external/webkit/Source/WebKit/win/Interfaces/
H A DIWebNotificationObserver.idl45 HRESULT onNotify([in] IWebNotification* notification);
H A DIWebDesktopNotificationsDelegate.idl38 @discussion A class that represents a notification being shown
39 on the user's desktop. It provides the contents of the notification
80 @abstract Show a notification.
81 @param notification The Notification to be shown.
83 HRESULT showDesktopNotification([in] IWebDesktopNotification* notification);
87 @abstract Cancel showing a notification (or take it down if it's shown).
88 @param notification The Notification to be canceled.
90 HRESULT cancelDesktopNotification([in] IWebDesktopNotification* notification);
95 notification need not be un-shown, but events should not be invoked.
96 @param notification Th
[all...]
/external/chromium/chrome/browser/sync/notifier/
H A Dp2p_notifier.cc93 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) {
114 << notification.channel;
123 VLOG(1) << "Not logged in yet -- not emitting notification";
108 OnIncomingNotification( const notifier::Notification& notification) argument
[all...]
/external/webkit/Tools/DumpRenderTree/mac/
H A DEditingDelegate.mm157 - (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 nam
[all...]
/external/chromium/chrome/browser/ui/cocoa/
H A Dfind_pasteboard.h41 // |kFindPasteboardChangedNotification| to the default notification center if
47 - (void)loadTextFromPasteboard:(NSNotification*)notification;
/external/webkit/Source/WebCore/accessibility/chromium/
H A DAXObjectCacheChromium.cpp50 void AXObjectCache::postPlatformNotification(AccessibilityObject* obj, AXNotification notification) argument
52 if (obj && obj->isAccessibilityScrollbar() && notification == AXValueChanged) {
53 // Send document value changed on scrollbar value changed notification.
70 switch (notification) {
76 // descendant and send the AXFocusedUIElementChanged notification.
98 client->postAccessibilityNotification(obj, notification);
123 // The anchor node may not be accessible. Post the notification for the

Completed in 446 milliseconds

1234567