HomeSort by relevance Sort by last modified time
    Searched defs:NotificationCenter (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/Source/modules/notifications/
NotificationCenter.cpp 36 #include "modules/notifications/NotificationCenter.h"
45 PassRefPtr<NotificationCenter> NotificationCenter::create(ScriptExecutionContext* context, NotificationClient* client)
47 RefPtr<NotificationCenter> notificationCenter(adoptRef(new NotificationCenter(context, client)));
48 notificationCenter->suspendIfNeeded();
49 return notificationCenter.release();
52 NotificationCenter::NotificationCenter(ScriptExecutionContext* context, NotificationClient* client
    [all...]
NotificationCenter.h 54 class NotificationCenter : public RefCounted<NotificationCenter>, public ScriptWrappable, public ActiveDOMObject {
56 static PassRefPtr<NotificationCenter> create(ScriptExecutionContext*, NotificationClient*);
79 NotificationCenter(ScriptExecutionContext*, NotificationClient*);
83 static PassRefPtr<NotificationRequestCallback> createAndStartTimer(NotificationCenter*, PassRefPtr<VoidCallback>);
87 NotificationRequestCallback(NotificationCenter*, PassRefPtr<VoidCallback>);
89 RefPtr<NotificationCenter> m_notificationCenter;

Completed in 1203 milliseconds