Searched refs:m_notificationPresenter (Results 1 - 8 of 8) sorted by relevance

/external/webkit/Source/WebCore/notifications/
H A DNotificationCenter.cpp45 , m_notificationPresenter(presenter) {}
51 return m_notificationPresenter->checkPermission(scriptExecutionContext());
58 m_notificationPresenter->requestPermission(scriptExecutionContext(), callback);
63 // m_notificationPresenter should never be 0. But just to be safe, we check it here.
65 ASSERT(m_notificationPresenter);
66 if (!m_notificationPresenter)
68 m_notificationPresenter->cancelRequestsForPermission(scriptExecutionContext());
69 m_notificationPresenter = 0;
H A DNotificationCenter.h74 NotificationPresenter* presenter() const { return m_notificationPresenter; }
84 NotificationPresenter* m_notificationPresenter; member in class:WebCore::NotificationCenter
/external/webkit/Source/WebCore/workers/
H A DWorkerThread.h63 NotificationPresenter* getNotificationPresenter() { return m_notificationPresenter; }
64 void setNotificationPresenter(NotificationPresenter* presenter) { m_notificationPresenter = presenter; }
94 NotificationPresenter* m_notificationPresenter; member in class:WebCore::WorkerThread
/external/webkit/Tools/DumpRenderTree/chromium/
H A DTestShell.h93 NotificationPresenter* notificationPresenter() const { return m_notificationPresenter.get(); }
199 OwnPtr<NotificationPresenter> m_notificationPresenter; member in class:TestShell
H A DTestShell.cpp118 m_notificationPresenter.set(new NotificationPresenter(this));
243 m_notificationPresenter->reset();
/external/webkit/Source/WebCore/page/
H A DPage.h398 NotificationPresenter* m_notificationPresenter; member in class:WebCore::Page
/external/webkit/Source/WebKit/chromium/src/
H A DWebViewImpl.h517 NotificationPresenterImpl m_notificationPresenter; member in class:WebKit::WebViewImpl
H A DWebViewImpl.cpp2220 if (!m_notificationPresenter.isInitialized() && m_client)
2221 m_notificationPresenter.initialize(m_client->notificationPresenter());
2222 return &m_notificationPresenter;

Completed in 1554 milliseconds