OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:NotificationClient
(Results
1 - 14
of
14
) 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/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/chromium_org/third_party/skia/tests/
DeferredCanvasTest.cpp
430
class NotificationCounter : public SkDeferredCanvas::
NotificationClient
{
456
typedef SkDeferredCanvas::
NotificationClient
INHERITED;
[
all
...]
/external/chromium_org/cc/trees/
layer_tree_host_unittest.cc
[
all
...]
Completed in 1288 milliseconds