Home
last modified time | relevance | path

Searched refs:m_presenter (Results 1 – 4 of 4) sorted by relevance

/external/webkit/WebCore/notifications/
DNotification.cpp49 , m_presenter(provider) in Notification()
51 ASSERT(m_presenter); in Notification()
53 …if (m_presenter->checkPermission(context->url(), document) != NotificationPresenter::PermissionAll… in Notification()
70 , m_presenter(provider) in Notification()
72 ASSERT(m_presenter); in Notification()
74 …if (m_presenter->checkPermission(context->url(), document) != NotificationPresenter::PermissionAll… in Notification()
88 m_presenter->notificationObjectDestroyed(this); in ~Notification()
95 m_isShowing = m_presenter->show(this); in show()
101 m_presenter->cancel(this); in cancel()
DNotification.h97 NotificationPresenter* m_presenter; variable
/external/webkit/WebKit/chromium/src/
DNotificationPresenterImpl.cpp72 m_presenter = presenter; in initialize()
77 return !!m_presenter; in isInitialized()
82 return m_presenter->show(PassRefPtr<Notification>(notification)); in show()
87 m_presenter->cancel(PassRefPtr<Notification>(notification)); in cancel()
92 m_presenter->objectDestroyed(PassRefPtr<Notification>(notification)); in notificationObjectDestroyed()
101 int result = m_presenter->checkPermission(url, document ? &webDocument : 0); in checkPermission()
107 m_presenter->requestPermission(origin->toString(), new VoidCallbackClient(callback)); in requestPermission()
DNotificationPresenterImpl.h48 NotificationPresenterImpl() : m_presenter(0) { } in NotificationPresenterImpl()
62 WebNotificationPresenter* m_presenter;