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

  /external/chromium_org/third_party/WebKit/Source/modules/notifications/
NotificationController.h 35 class NotificationClient;
44 static PassOwnPtrWillBeRawPtr<NotificationController> create(PassOwnPtr<NotificationClient>);
47 static NotificationClient& clientFrom(ExecutionContext*);
52 explicit NotificationController(PassOwnPtr<NotificationClient>);
54 NotificationClient& client() { return *m_client; }
56 OwnPtr<NotificationClient> m_client;
59 void provideNotification(LocalFrame&, PassOwnPtr<NotificationClient>);
NotificationClient.h 44 class NotificationClient {
47 virtual ~NotificationClient() { }
NotificationController.cpp 31 #include "modules/notifications/NotificationClient.h"
36 NotificationController::NotificationController(PassOwnPtr<NotificationClient> client)
45 PassOwnPtrWillBeRawPtr<NotificationController> NotificationController::create(PassOwnPtr<NotificationClient> client)
57 NotificationClient& NotificationController::clientFrom(ExecutionContext* context)
69 void provideNotification(LocalFrame& frame, PassOwnPtr<NotificationClient> client)
Notification.cpp 38 #include "modules/notifications/NotificationClient.h"
47 NotificationClient& client = NotificationController::clientFrom(context);
64 Notification::Notification(const String& title, ExecutionContext* context, NotificationClient* client)
87 if (m_client->checkPermission(executionContext()) != NotificationClient::PermissionAllowed) {
138 const String& Notification::permissionString(NotificationClient::Permission permission)
145 case NotificationClient::PermissionAllowed:
147 case NotificationClient::PermissionDenied:
149 case NotificationClient::PermissionNotAllowed:
Notification.h 36 #include "modules/notifications/NotificationClient.h"
81 static const String& permissionString(NotificationClient::Permission);
95 Notification(const String& title, ExecutionContext*, NotificationClient*);
127 NotificationClient* m_client;
  /external/chromium_org/third_party/WebKit/Source/web/
NotificationPresenterImpl.h 34 #include "modules/notifications/NotificationClient.h"
40 class NotificationPresenterImpl FINAL : public NotificationClient {
47 // NotificationClient:
51 virtual NotificationClient::Permission checkPermission(ExecutionContext*) OVERRIDE;
NotificationPresenterImpl.cpp 74 NotificationClient::Permission NotificationPresenterImpl::checkPermission(ExecutionContext* context)
77 return static_cast<NotificationClient::Permission>(result);
NotificationPermissionClientImpl.cpp 31 m_callback->handleEvent(Notification::permissionString(static_cast<NotificationClient::Permission>(permission)));
AssertMatchingEnums.cpp 64 #include "modules/notifications/NotificationClient.h"
434 COMPILE_ASSERT_MATCHING_ENUM(WebNotificationPresenter::PermissionAllowed, NotificationClient::PermissionAllowed);
435 COMPILE_ASSERT_MATCHING_ENUM(WebNotificationPresenter::PermissionNotAllowed, NotificationClient::PermissionNotAllowed);
436 COMPILE_ASSERT_MATCHING_ENUM(WebNotificationPresenter::PermissionDenied, NotificationClient::PermissionDenied);
    [all...]
  /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);
209 class NotificationClient {
211 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);
198 class NotificationClient {
200 virtual ~NotificationClient() {}
    [all...]
  /external/skia/bench/
DeferredCanvasBench.cpp 52 class SimpleNotificationClient : public SkDeferredCanvas::NotificationClient {
63 typedef SkDeferredCanvas::NotificationClient INHERITED;
  /frameworks/av/services/audiopolicy/
AudioPolicyService.h 476 class NotificationClient : public IBinder::DeathRecipient {
478 NotificationClient(const sp<AudioPolicyService>& service,
481 virtual ~NotificationClient();
490 NotificationClient(const NotificationClient&);
491 NotificationClient& operator = (const NotificationClient&);
512 DefaultKeyedVector< uid_t, sp<NotificationClient> > mNotificationClients;
AudioPolicyService.cpp 156 sp<NotificationClient> notificationClient = new NotificationClient(this,
161 mNotificationClients.add(uid, notificationClient);
164 binder->linkToDeath(notificationClient);
230 AudioPolicyService::NotificationClient::NotificationClient(const sp<AudioPolicyService>& service,
237 AudioPolicyService::NotificationClient::~NotificationClient()
241 void AudioPolicyService::NotificationClient::binderDied(const wp<IBinder>& who __unused
    [all...]
  /frameworks/av/services/audioflinger/
AudioFlinger.h 417 class NotificationClient : public IBinder::DeathRecipient {
419 NotificationClient(const sp<AudioFlinger>& audioFlinger,
422 virtual ~NotificationClient();
430 NotificationClient(const NotificationClient&);
431 NotificationClient& operator = (const NotificationClient&);
714 DefaultKeyedVector< pid_t, sp<NotificationClient> > mNotificationClients;
    [all...]
AudioFlinger.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
Canvas2DLayerBridge.h 51 class PLATFORM_EXPORT Canvas2DLayerBridge : public WebExternalTextureLayerClient, public SkDeferredCanvas::NotificationClient, public DoublyLinkedListNode<Canvas2DLayerBridge>, public RefCounted<Canvas2DLayerBridge> {
62 // SkDeferredCanvas::NotificationClient implementation
  /external/chromium_org/third_party/skia/src/utils/
SkDeferredCanvas.cpp 143 void setNotificationClient(SkDeferredCanvas::NotificationClient* notificationClient);
263 SkDeferredCanvas::NotificationClient* fNotificationClient;
313 SkDeferredCanvas::NotificationClient* notificationClient) {
314 fNotificationClient = notificationClient;
626 SkDeferredCanvas::NotificationClient* SkDeferredCanvas::setNotificationClient(
627 NotificationClient* notificationClient) {
632 deferredDevice->setNotificationClient(notificationClient);
    [all...]
  /external/skia/src/utils/
SkDeferredCanvas.cpp 143 void setNotificationClient(SkDeferredCanvas::NotificationClient* notificationClient);
261 SkDeferredCanvas::NotificationClient* fNotificationClient;
313 SkDeferredCanvas::NotificationClient* notificationClient) {
314 fNotificationClient = notificationClient;
626 SkDeferredCanvas::NotificationClient* SkDeferredCanvas::setNotificationClient(
627 NotificationClient* notificationClient) {
632 deferredDevice->setNotificationClient(notificationClient);
    [all...]
  /external/chromium_org/third_party/skia/tests/
DeferredCanvasTest.cpp 430 class NotificationCounter : public SkDeferredCanvas::NotificationClient {
456 typedef SkDeferredCanvas::NotificationClient INHERITED;
    [all...]
  /external/skia/tests/
DeferredCanvasTest.cpp 447 class NotificationCounter : public SkDeferredCanvas::NotificationClient {
473 typedef SkDeferredCanvas::NotificationClient INHERITED;
    [all...]
  /external/chromium_org/cc/trees/
layer_tree_host_unittest.cc     [all...]

Completed in 817 milliseconds