/external/chromium_org/third_party/WebKit/Source/modules/notifications/ |
NotificationController.h | 35 class NotificationClient; 42 static PassOwnPtr<NotificationController> create(NotificationClient*); 45 static NotificationClient* clientFrom(Page*); 47 NotificationClient* client() { return m_client; } 50 explicit NotificationController(NotificationClient*); 52 NotificationClient* m_client; 55 void provideNotification(Page*, NotificationClient*);
|
NotificationController.cpp | 29 #include "modules/notifications/NotificationClient.h" 34 NotificationController::NotificationController(NotificationClient* client) 43 PassOwnPtr<NotificationController> NotificationController::create(NotificationClient* client) 48 NotificationClient* NotificationController::clientFrom(Page* page) 60 void provideNotification(Page* page, NotificationClient* client)
|
NotificationCenter.h | 52 class NotificationClient; 57 static PassRefPtr<NotificationCenter> create(ExecutionContext*, NotificationClient*); 68 NotificationClient* client() const { return m_client; } 76 NotificationCenter(ExecutionContext*, NotificationClient*); 93 NotificationClient* m_client;
|
NotificationBase.cpp | 40 NotificationBase::NotificationBase(const String& title, ExecutionContext* context, NotificationClient* client) 60 if (NotificationController::from(toDocument(executionContext())->page())->client()->checkPermission(executionContext()) != NotificationClient::PermissionAllowed) { 112 const String& NotificationBase::permissionString(NotificationClient::Permission permission) 119 case NotificationClient::PermissionAllowed: 121 case NotificationClient::PermissionDenied: 123 case NotificationClient::PermissionNotAllowed:
|
NotificationCenter.cpp | 40 #include "modules/notifications/NotificationClient.h" 45 PassRefPtr<NotificationCenter> NotificationCenter::create(ExecutionContext* context, NotificationClient* client) 52 NotificationCenter::NotificationCenter(ExecutionContext* context, NotificationClient* client) 62 return NotificationClient::PermissionDenied; 66 return NotificationClient::PermissionAllowed; 68 return NotificationClient::PermissionDenied;
|
NotificationBase.h | 37 #include "modules/notifications/NotificationClient.h" 44 class NotificationClient; 82 static const String& permissionString(NotificationClient::Permission); 93 NotificationBase(const String& title, ExecutionContext*, NotificationClient*); 117 NotificationClient* m_client;
|
Notification.h | 45 class NotificationClient; 67 Notification(ExecutionContext*, const String& title, NotificationClient*);
|
NotificationClient.h | 44 class NotificationClient { 76 virtual ~NotificationClient() { }
|
WebKitNotification.cpp | 40 #include "modules/notifications/NotificationClient.h" 57 if (provider->checkPermission() != NotificationClient::PermissionAllowed) {
|
Notification.cpp | 45 NotificationClient* client = NotificationController::clientFrom(toDocument(context)->page()); 67 Notification::Notification(ExecutionContext* context, const String& title, NotificationClient* client)
|
DOMWindowNotifications.cpp | 98 NotificationClient* provider = NotificationController::clientFrom(page);
|
/external/chromium_org/third_party/WebKit/Source/core/workers/ |
WorkerThread.h | 41 class NotificationClient; 65 NotificationClient* getNotificationClient() { return m_notificationClient; } 66 void setNotificationClient(NotificationClient* client) { m_notificationClient = client; } 95 NotificationClient* m_notificationClient;
|
/external/chromium_org/third_party/skia/include/utils/ |
SkDeferredCanvas.h | 28 class SK_API NotificationClient; 51 * Specify a NotificationClient to be used by this canvas. Calling 53 * NotificationClient, if any. SkDeferredCanvas does not take ownership 60 * @param notificationClient interface for dispatching notifications 61 * @return The notificationClient argument, for convenience. 63 NotificationClient* setNotificationClient(NotificationClient* notificationClient); 204 class NotificationClient { 206 virtual ~NotificationClient() {} [all...] |
/external/skia/include/utils/ |
SkDeferredCanvas.h | 28 class SK_API NotificationClient; 51 * Specify a NotificationClient to be used by this canvas. Calling 53 * NotificationClient, if any. SkDeferredCanvas does not take ownership 60 * @param notificationClient interface for dispatching notifications 61 * @return The notificationClient argument, for convenience. 63 NotificationClient* setNotificationClient(NotificationClient* notificationClient); 204 class NotificationClient { 206 virtual ~NotificationClient() {} [all...] |
/external/chromium_org/third_party/WebKit/Source/web/ |
NotificationPresenterImpl.h | 35 #include "modules/notifications/NotificationClient.h" 44 class NotificationPresenterImpl : public WebCore::NotificationClient { 55 virtual WebCore::NotificationClient::Permission checkPermission(WebCore::ExecutionContext*);
|
NotificationPresenterImpl.cpp | 79 m_callback->handleEvent(NotificationBase::permissionString(static_cast<NotificationClient::Permission>(m_presenter->checkPermission(WebSecurityOrigin(m_securityOrigin))))); 116 NotificationClient::Permission NotificationPresenterImpl::checkPermission(ExecutionContext* context) 119 return static_cast<NotificationClient::Permission>(result);
|
AssertMatchingEnums.cpp | 84 #include "modules/notifications/NotificationClient.h" 453 COMPILE_ASSERT_MATCHING_ENUM(WebNotificationPresenter::PermissionAllowed, NotificationClient::PermissionAllowed); 454 COMPILE_ASSERT_MATCHING_ENUM(WebNotificationPresenter::PermissionNotAllowed, NotificationClient::PermissionNotAllowed); 455 COMPILE_ASSERT_MATCHING_ENUM(WebNotificationPresenter::PermissionDenied, NotificationClient::PermissionDenied); [all...] |
/external/skia/bench/ |
DeferredCanvasBench.cpp | 50 class SimpleNotificationClient : public SkDeferredCanvas::NotificationClient { 61 typedef SkDeferredCanvas::NotificationClient INHERITED;
|
/external/chromium_org/third_party/WebKit/Source/platform/graphics/ |
Canvas2DLayerBridge.h | 51 class PLATFORM_EXPORT Canvas2DLayerBridge : public blink::WebExternalTextureLayerClient, public SkDeferredCanvas::NotificationClient, public DoublyLinkedListNode<Canvas2DLayerBridge>, public RefCounted<Canvas2DLayerBridge> { 62 // SkDeferredCanvas::NotificationClient implementation
|
/frameworks/av/services/audioflinger/ |
AudioFlinger.h | 343 class NotificationClient : public IBinder::DeathRecipient { 345 NotificationClient(const sp<AudioFlinger>& audioFlinger, 348 virtual ~NotificationClient(); 356 NotificationClient(const NotificationClient&); 357 NotificationClient& operator = (const NotificationClient&); 589 DefaultKeyedVector< pid_t, sp<NotificationClient> > mNotificationClients;
|
AudioFlinger.cpp | [all...] |
/external/chromium_org/third_party/skia/src/utils/ |
SkDeferredCanvas.cpp | 147 void setNotificationClient(SkDeferredCanvas::NotificationClient* notificationClient); 249 SkDeferredCanvas::NotificationClient* fNotificationClient; 317 SkDeferredCanvas::NotificationClient* notificationClient) { 318 fNotificationClient = notificationClient; 653 SkDeferredCanvas::NotificationClient* SkDeferredCanvas::setNotificationClient( 654 NotificationClient* notificationClient) { 659 deferredDevice->setNotificationClient(notificationClient); [all...] |
/external/skia/src/utils/ |
SkDeferredCanvas.cpp | 147 void setNotificationClient(SkDeferredCanvas::NotificationClient* notificationClient); 249 SkDeferredCanvas::NotificationClient* fNotificationClient; 317 SkDeferredCanvas::NotificationClient* notificationClient) { 318 fNotificationClient = notificationClient; 653 SkDeferredCanvas::NotificationClient* SkDeferredCanvas::setNotificationClient( 654 NotificationClient* notificationClient) { 659 deferredDevice->setNotificationClient(notificationClient); [all...] |
/external/skia/tests/ |
DeferredCanvasTest.cpp | 472 class NotificationCounter : public SkDeferredCanvas::NotificationClient { 498 typedef SkDeferredCanvas::NotificationClient INHERITED; [all...] |
/external/chromium_org/cc/trees/ |
layer_tree_host_unittest.cc | [all...] |