HomeSort by relevance Sort by last modified time
    Searched refs:m_presenter (Results 1 - 4 of 4) sorted by null

  /external/webkit/WebCore/notifications/
Notification.cpp 49 , m_presenter(provider)
51 ASSERT(m_presenter);
53 if (m_presenter->checkPermission(context->url(), document) != NotificationPresenter::PermissionAllowed) {
70 , m_presenter(provider)
72 ASSERT(m_presenter);
74 if (m_presenter->checkPermission(context->url(), document) != NotificationPresenter::PermissionAllowed) {
88 m_presenter->notificationObjectDestroyed(this);
95 m_isShowing = m_presenter->show(this);
101 m_presenter->cancel(this);
Notification.h 97 NotificationPresenter* m_presenter; member in class:WebCore::Notification
  /external/webkit/WebKit/chromium/src/
NotificationPresenterImpl.cpp 72 m_presenter = presenter;
77 return !!m_presenter;
82 return m_presenter->show(PassRefPtr<Notification>(notification));
87 m_presenter->cancel(PassRefPtr<Notification>(notification));
92 m_presenter->objectDestroyed(PassRefPtr<Notification>(notification));
101 int result = m_presenter->checkPermission(url, document ? &webDocument : 0);
107 m_presenter->requestPermission(origin->toString(), new VoidCallbackClient(callback));
NotificationPresenterImpl.h 48 NotificationPresenterImpl() : m_presenter(0) { }
62 WebNotificationPresenter* m_presenter; member in class:WebKit::NotificationPresenterImpl

Completed in 67 milliseconds