Searched refs:Notification (Results 1 - 25 of 33) sorted by relevance

12

/macosx-10.10.1/WebKit-7600.1.25/mac/WebView/
H A DWebNotificationInternal.h34 class Notification;
37 WebCore::Notification* core(WebNotification *);
40 - (id)initWithCoreNotification:(WebCore::Notification*)coreNotification notificationID:(uint64_t)notificationID;
H A DWebNotification.mm35 #import <WebCore/Notification.h>
48 RefPtr<Notification> _internal;
59 Notification* core(WebNotification *notification)
66 - (id)initWithCoreNotification:(Notification*)coreNotification notificationID:(uint64_t)notificationID
/macosx-10.10.1/WebKit2-7600.1.25/WebProcess/Notifications/
H A DWebNotificationManager.h39 class Notification;
56 bool show(WebCore::Notification*, WebPage*);
57 void cancel(WebCore::Notification*, WebPage*);
60 void didDestroyNotification(WebCore::Notification*, WebPage*);
68 uint64_t notificationIDForTesting(WebCore::Notification*);
84 void removeNotificationFromContextMap(uint64_t notificationID, WebCore::Notification*);
90 typedef HashMap<RefPtr<WebCore::Notification>, uint64_t> NotificationMap;
93 typedef HashMap<uint64_t, RefPtr<WebCore::Notification>> NotificationIDMap;
H A DWebNotificationManager.cpp38 #include <WebCore/Notification.h>
129 uint64_t WebNotificationManager::notificationIDForTesting(Notification* notification)
141 bool WebNotificationManager::show(Notification* notification, WebPage* page)
167 void WebNotificationManager::cancel(Notification* notification, WebPage* page)
195 RefPtr<Notification> notification = m_notificationIDMap.take(notificationIDs[i]);
209 void WebNotificationManager::didDestroyNotification(Notification* notification, WebPage* page)
231 RefPtr<Notification> notification = m_notificationIDMap.get(notificationID);
247 RefPtr<Notification> notification = m_notificationIDMap.get(notificationID);
268 RefPtr<Notification> notification = m_notificationIDMap.take(notificationID);
283 void WebNotificationManager::removeNotificationFromContextMap(uint64_t notificationID, Notification* notificatio
[all...]
H A DNotificationPermissionRequestManager.cpp33 #include <WebCore/Notification.h>
74 callback->handleEvent(Notification::permissionString(permission));
177 callback->handleEvent(Notification::permissionString(allowed ? NotificationClient::PermissionAllowed : NotificationClient::PermissionDenied));
H A DNotificationPermissionRequestManager.h39 class Notification;
/macosx-10.10.1/Security-57031.1.35/securityd/src/
H A Dnotifications.cpp68 RefPointer<Notification> message = new Notification(domain, event, 0, data);
77 RefPointer<Notification> message = new Notification(domain, event, sequence, data);
81 while (RefPointer<Notification> next = current.popNotification())
86 void Listener::sendNotification(Notification *message)
124 // Notification message objects
126 Listener::Notification::Notification(NotificationDomain inDomain, function in class:Listener::Notification
134 Listener::Notification
[all...]
H A Dnotifications.h85 class Notification : public RefCount { class in class:Listener
87 Notification(NotificationDomain domain, NotificationEvent event,
89 virtual ~Notification();
100 virtual void notifyMe(Notification *message) = 0;
107 bool inSequence(Notification *message);
108 RefPointer<Notification> popNotification();
112 typedef std::map<uint32, RefPointer<Notification> > JBuffer;
117 static void sendNotification(Notification *message);
131 virtual void notifyMe(Notification *message);
H A Dpcscmonitor.h61 void notifyMe(Notification *message);
H A Dpcscmonitor.cpp157 void PCSCMonitor::notifyMe(Notification *message)
/macosx-10.10.1/WebKit-7600.1.25/mac/WebCoreSupport/
H A DWebNotificationClient.h29 #import <WebCore/Notification.h>
36 class Notification;
53 uint64_t notificationIDForTesting(WebCore::Notification*);
57 virtual bool show(WebCore::Notification*) override;
58 virtual void cancel(WebCore::Notification*) override;
60 virtual void notificationObjectDestroyed(WebCore::Notification*) override;
77 HashMap<RefPtr<WebCore::Notification>, RetainPtr<WebNotification>> m_notificationMap;
H A DWebNotificationClient.mm83 bool WebNotificationClient::show(Notification* notification)
104 void WebNotificationClient::cancel(Notification* notification)
141 void WebNotificationClient::notificationObjectDestroyed(Notification* notification)
231 uint64_t WebNotificationClient::notificationIDForTesting(WebCore::Notification* notification)
272 _callback->handleEvent(Notification::permissionString(NotificationClient::PermissionAllowed));
287 _callback->handleEvent(Notification::permissionString(NotificationClient::PermissionDenied));
/macosx-10.10.1/WebKit-7600.1.25/win/WebCoreSupport/
H A DWebDesktopNotificationsDelegate.h32 #include <WebCore/Notification.h>
49 virtual bool show(WebCore::Notification* object);
50 virtual void cancel(WebCore::Notification* object);
51 virtual void notificationObjectDestroyed(WebCore::Notification* object);
H A DWebDesktopNotificationsDelegate.cpp45 static NotificationCOMWrapper* create(Notification* inner) { return new NotificationCOMWrapper(inner); }
63 NotificationCOMWrapper(Notification* inner) : m_refCount(1), m_inner(inner) {}
66 Notification* m_inner;
149 bool WebDesktopNotificationsDelegate::show(Notification* object)
156 void WebDesktopNotificationsDelegate::cancel(Notification* object)
162 void WebDesktopNotificationsDelegate::notificationObjectDestroyed(Notification* object)
/macosx-10.10.1/WebKit2-7600.1.25/WebProcess/WebCoreSupport/
H A DWebNotificationClient.cpp50 bool WebNotificationClient::show(Notification* notification)
55 void WebNotificationClient::cancel(Notification* notification)
65 void WebNotificationClient::notificationObjectDestroyed(Notification* notification)
H A DWebNotificationClient.h49 virtual bool show(WebCore::Notification*) override;
50 virtual void cancel(WebCore::Notification*) override;
52 virtual void notificationObjectDestroyed(WebCore::Notification*) override;
/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/Notifications/
H A DWebNotification.h44 class WebNotification : public API::ObjectImpl<API::Object::Type::Notification> {
/macosx-10.10.1/WebInspectorUI-7600.1.17/UserInterface/Controllers/
H A DDragToAdjustController.js82 WebInspector.notifications.addEventListener(WebInspector.Notification.GlobalModifierKeysDidChange, this._modifiersDidChange, this);
85 WebInspector.notifications.removeEventListener(WebInspector.Notification.GlobalModifierKeysDidChange, this._modifiersDidChange, this);
/macosx-10.10.1/vim-55/runtime/keymap/
H A Dkana.vim25 " Cabinet Notification 1 (Dec. 9, 1954).
40 " 2. The specification instructed by the Cabinet Notification is rather
104 " Hiragana 1 --- Table 1, Cabinet Notification No. 1 (Dec. 9, 1954)
237 " Hiragana 2 --- Table 2, Cabinet Notification No. 1 (Dec. 9, 1954)
410 " Katakana 1 --- Table 1, Cabinet Notification No. 1 (Dec. 9, 1954)
543 " Katakana 2 --- Table 2, Cabinet Notification No. 1 (Dec. 9, 1954)
/macosx-10.10.1/AppleUSBCDCDriver-4205.2.2/Common/
H A DAppleUSBCDCCommon.h97 } __attribute__((packed)) Notification; typedef in typeref:struct:__anon46
101 Notification header;
107 Notification header;
/macosx-10.10.1/WebKit2-7600.1.25/Shared/
H A DAPIObject.h123 Notification, member in class:API::Object::Type
/macosx-10.10.1/llvmCore-3425.0.34/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-port.h1090 class Notification { class in namespace:testing::internal
1092 Notification() : notified_(false) {} function in class:testing::internal::Notification
1109 GTEST_DISALLOW_COPY_AND_ASSIGN_(Notification);
1138 // Notification thread_can_start;
1152 UserThreadFunc func, T param, Notification* thread_can_start)
1183 Notification* const thread_can_start_;
/macosx-10.10.1/WebInspectorUI-7600.1.17/UserInterface/Views/
H A DFrameTreeElement.js49 WebInspector.notifications.addEventListener(WebInspector.Notification.PageArchiveStarted, this._pageArchiveStarted, this);
50 WebInspector.notifications.addEventListener(WebInspector.Notification.PageArchiveEnded, this._pageArchiveEnded, this);
/macosx-10.10.1/IOFWDVComponents-207.4.1/MacOS9Src/
H A DDVFamilyLib.c71 call, but currently only calling it from a Notification Mgr
73 <23> 11/16/98 SS Beefed up DVGetDeviceInfo(). Notification now uses PB queues.
140 #include <Notification.h>
415 #pragma mark ���������� DV Event Notification Calls ����������
1096 // to Notification Mgr to run tasks, do it now...
/macosx-10.10.1/IOFWDVComponents-207.4.1/
H A DIsochComponentsRef215 Notification Structures
238 Notification Events
489 Device Notification

Completed in 508 milliseconds

12