Searched refs:NotificationCenter (Results 1 - 12 of 12) sorted by relevance

/external/webkit/Source/WebCore/notifications/
H A DNotificationCenter.cpp35 #include "NotificationCenter.h"
43 NotificationCenter::NotificationCenter(ScriptExecutionContext* context, NotificationPresenter* presenter) function in class:WebCore::NotificationCenter
47 int NotificationCenter::checkPermission()
54 void NotificationCenter::requestPermission(PassRefPtr<VoidCallback> callback)
61 void NotificationCenter::disconnectFrame()
H A DNotificationCenter.h47 class NotificationCenter : public RefCounted<NotificationCenter>, public ActiveDOMObject { class in namespace:WebCore
49 static PassRefPtr<NotificationCenter> create(ScriptExecutionContext* context, NotificationPresenter* presenter) { return adoptRef(new NotificationCenter(context, presenter)); }
82 NotificationCenter(ScriptExecutionContext*, NotificationPresenter*);
H A DNotification.h58 class NotificationCenter;
64 static PassRefPtr<Notification> create(const KURL& url, ScriptExecutionContext* context, ExceptionCode& ec, PassRefPtr<NotificationCenter> provider);
65 static PassRefPtr<Notification> create(const NotificationContents& contents, ScriptExecutionContext* context, ExceptionCode& ec, PassRefPtr<NotificationCenter> provider);
104 // Deprecated. Use functions from NotificationCenter.
115 Notification(const KURL&, ScriptExecutionContext*, ExceptionCode&, PassRefPtr<NotificationCenter>);
116 Notification(const NotificationContents&, ScriptExecutionContext*, ExceptionCode&, PassRefPtr<NotificationCenter>);
143 RefPtr<NotificationCenter> m_notificationCenter;
H A DNotificationCenter.idl36 ] NotificationCenter {
H A DNotification.cpp37 #include "NotificationCenter.h"
49 Notification::Notification(const KURL& url, ScriptExecutionContext* context, ExceptionCode& ec, PassRefPtr<NotificationCenter> provider)
69 Notification::Notification(const NotificationContents& contents, ScriptExecutionContext* context, ExceptionCode& ec, PassRefPtr<NotificationCenter> provider)
96 PassRefPtr<Notification> Notification::create(const KURL& url, ScriptExecutionContext* context, ExceptionCode& ec, PassRefPtr<NotificationCenter> provider)
101 PassRefPtr<Notification> Notification::create(const NotificationContents& contents, ScriptExecutionContext* context, ExceptionCode& ec, PassRefPtr<NotificationCenter> provider)
/external/webkit/Source/WebCore/bindings/v8/custom/
H A DV8NotificationCenterCustom.cpp38 #include "NotificationCenter.h"
51 INC_STATS(L"DOM.NotificationCenter.CreateHTMLNotification()");
52 NotificationCenter* notificationCenter = V8NotificationCenter::toNative(args.Holder());
67 INC_STATS(L"DOM.NotificationCenter.CreateNotification()");
68 NotificationCenter* notificationCenter = V8NotificationCenter::toNative(args.Holder());
82 INC_STATS(L"DOM.NotificationCenter.RequestPermission()");
83 NotificationCenter* notificationCenter = V8NotificationCenter::toNative(args.Holder());
/external/webkit/Source/WebCore/workers/
H A DWorkerContext.h57 class NotificationCenter;
110 NotificationCenter* webkitNotifications() const;
198 mutable RefPtr<NotificationCenter> m_notifications;
H A DWorkerContext.idl80 readonly attribute [EnabledAtRuntime] NotificationCenter webkitNotifications;
H A DWorkerContext.cpp66 #include "NotificationCenter.h"
284 NotificationCenter* WorkerContext::webkitNotifications() const
287 m_notifications = NotificationCenter::create(scriptExecutionContext(), m_thread->getNotificationPresenter());
/external/webkit/Source/WebCore/page/
H A DDOMWindow.h60 class NotificationCenter;
404 NotificationCenter* webkitNotifications() const;
493 mutable RefPtr<NotificationCenter> m_notifications;
H A DDOMWindow.cpp76 #include "NotificationCenter.h"
684 NotificationCenter* DOMWindow::webkitNotifications() const
699 m_notifications = NotificationCenter::create(document, provider);
H A DDOMWindow.idl178 readonly attribute [EnabledAtRuntime] NotificationCenter webkitNotifications;

Completed in 114 milliseconds