OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:NotificationCenter
(Results
1 - 12
of
12
) sorted by null
/external/webkit/Source/WebCore/notifications/
NotificationCenter.cpp
35
#include "
NotificationCenter
.h"
43
NotificationCenter
::
NotificationCenter
(ScriptExecutionContext* context, NotificationPresenter* presenter)
47
int
NotificationCenter
::checkPermission()
54
void
NotificationCenter
::requestPermission(PassRefPtr<VoidCallback> callback)
61
void
NotificationCenter
::disconnectFrame()
NotificationCenter.h
47
class
NotificationCenter
: public RefCounted<
NotificationCenter
>, public ActiveDOMObject {
49
static PassRefPtr<
NotificationCenter
> create(ScriptExecutionContext* context, NotificationPresenter* presenter) { return adoptRef(new
NotificationCenter
(context, presenter)); }
82
NotificationCenter
(ScriptExecutionContext*, NotificationPresenter*);
Notification.h
58
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;
NotificationCenter.idl
36
]
NotificationCenter
{
Notification.cpp
37
#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/
V8NotificationCenterCustom.cpp
38
#include "
NotificationCenter
.h"
51
INC_STATS(L"DOM.
NotificationCenter
.CreateHTMLNotification()");
52
NotificationCenter
*
notificationCenter
= V8NotificationCenter::toNative(args.Holder());
56
RefPtr<Notification> notification =
notificationCenter
->createHTMLNotification(url, ec);
67
INC_STATS(L"DOM.
NotificationCenter
.CreateNotification()");
68
NotificationCenter
*
notificationCenter
= V8NotificationCenter::toNative(args.Holder());
71
RefPtr<Notification> notification =
notificationCenter
->createNotification(toWebCoreString(args[0]), toWebCoreString(args[1]), toWebCoreString(args[2]), ec);
82
INC_STATS(L"DOM.
NotificationCenter
.RequestPermission()")
[
all
...]
/external/webkit/Source/WebCore/workers/
WorkerContext.h
57
class
NotificationCenter
;
110
NotificationCenter
* webkitNotifications() const;
198
mutable RefPtr<
NotificationCenter
> m_notifications;
WorkerContext.idl
80
readonly attribute [EnabledAtRuntime]
NotificationCenter
webkitNotifications;
WorkerContext.cpp
66
#include "
NotificationCenter
.h"
284
NotificationCenter
* WorkerContext::webkitNotifications() const
287
m_notifications =
NotificationCenter
::create(scriptExecutionContext(), m_thread->getNotificationPresenter());
/external/webkit/Source/WebCore/page/
DOMWindow.h
60
class
NotificationCenter
;
404
NotificationCenter
* webkitNotifications() const;
493
mutable RefPtr<
NotificationCenter
> m_notifications;
DOMWindow.cpp
76
#include "
NotificationCenter
.h"
684
NotificationCenter
* DOMWindow::webkitNotifications() const
699
m_notifications =
NotificationCenter
::create(document, provider);
[
all
...]
DOMWindow.idl
178
readonly attribute [EnabledAtRuntime]
NotificationCenter
webkitNotifications;
[
all
...]
Completed in 3870 milliseconds