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

  /external/webkit/Source/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));
97 int result = m_presenter->checkPermission(context->url());
103 m_presenter->requestPermission(WebSecurityOrigin(context->securityOrigin()), new VoidCallbackClient(callback));
NotificationPresenterImpl.h 48 NotificationPresenterImpl() : m_presenter(0) { }
63 WebNotificationPresenter* m_presenter; member in class:WebKit::NotificationPresenterImpl
  /external/webkit/Source/WebKit/qt/WebCoreSupport/
NotificationPresenterClientQt.h 76 OwnPtr<QWebNotificationPresenter> m_presenter; member in class:WebCore::NotificationWrapper
NotificationPresenterClientQt.cpp 78 m_presenter = 0;
205 wrapper->m_presenter = m_platformPlugin.createNotificationPresenter();
207 if (!wrapper->m_presenter) {
226 if (wrapper->m_presenter) {
227 wrapper->connect(wrapper->m_presenter.get(), SIGNAL(notificationClosed()), wrapper, SLOT(notificationClosed()), Qt::QueuedConnection);
228 wrapper->connect(wrapper->m_presenter.get(), SIGNAL(notificationClicked()), wrapper, SLOT(notificationClicked()));
229 wrapper->m_presenter->showNotification(wrapper);

Completed in 2172 milliseconds