OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:notificationcontroller
(Results
1 - 25
of
32
) sorted by null
1
2
/external/chromium_org/third_party/WebKit/Source/modules/notifications/
NotificationController.cpp
27
#include "modules/notifications/
NotificationController
.h"
36
NotificationController
::
NotificationController
(NotificationClient* client)
41
NotificationController
::~
NotificationController
()
47
PassOwnPtr<
NotificationController
>
NotificationController
::create(NotificationClient* client)
49
return adoptPtr(new
NotificationController
(client));
52
NotificationClient*
NotificationController
::clientFrom(Page* page)
54
if (
NotificationController
* controller = NotificationController::from(page)
[
all
...]
NotificationController.h
39
class
NotificationController
: public Supplement<Page> {
40
WTF_MAKE_NONCOPYABLE(
NotificationController
);
42
~
NotificationController
();
44
static PassOwnPtr<
NotificationController
> create(NotificationClient*);
46
static
NotificationController
* from(Page* page) { return static_cast<
NotificationController
*>(Supplement<Page>::from(page, supplementName())); }
52
explicit
NotificationController
(NotificationClient*);
DOMWindowNotifications.cpp
36
#include "modules/notifications/
NotificationController
.h"
98
NotificationClient* provider =
NotificationController
::clientFrom(page);
Notification.cpp
52
#include "modules/notifications/
NotificationController
.h"
149
if (
NotificationController
::from(toDocument(scriptExecutionContext())->page())->client()->checkPermission(scriptExecutionContext()) != NotificationClient::PermissionAllowed) {
236
return permissionString(
NotificationController
::from(toDocument(context)->page())->client()->checkPermission(context));
261
NotificationController
::from(toDocument(context)->page())->client()->requestPermission(context, callback);
/external/chromium_org/chrome/browser/ui/cocoa/autofill/
autofill_notification_container.mm
78
notificationController
([[AutofillNotificationController alloc] init]);
79
[
notificationController
setText:
81
[
notificationController
setTextColor:
83
[
notificationController
setBackgroundColor:
91
[
notificationController
setHasCheckbox:YES];
93
[[
notificationController
checkbox] setEnabled:FALSE];
94
[[
notificationController
checkbox] setState:
96
[[
notificationController
checkbox] setTarget:self];
97
[[
notificationController
checkbox] setAction:@selector(checkboxClicked:)];
101
[
notificationController
setHasArrow:notification.HasArrow(
[
all
...]
/packages/apps/Email/src/com/android/email/service/
AccountService.java
25
import com.android.email.
NotificationController
;
45
NotificationController
nc =
NotificationController
.getInstance(mContext);
51
NotificationController
.getInstance(mContext).cancelLoginFailedNotification(accountId);
Pop3Service.java
31
import com.android.email.
NotificationController
;
122
NotificationController
nc =
NotificationController
.getInstance(context);
EmailServiceStub.java
29
import com.android.email.
NotificationController
;
489
final
NotificationController
nc =
NotificationController
.getInstance(context);
AttachmentDownloadService.java
37
import com.android.email.
NotificationController
;
622
NotificationController
nc =
NotificationController
.getInstance(mContext);
[
all
...]
/external/chromium_org/ui/message_center/cocoa/
popup_controller.h
66
- (MCNotificationController*)
notificationController
;
71
// Gets the notification ID. This string is owned by the
NotificationController
notification_controller.h
73
// Gets the notification ID. This string is owned by the
NotificationController
popup_collection.mm
369
NSHeight([[[popup
notificationController
] view] frame]);
371
[[popup
notificationController
] updateNotification:*iter]);
popup_collection_unittest.mm
262
[[popups objectAtIndex:1]
notificationController
];
276
controller = [[popups objectAtIndex:0]
notificationController
];
popup_controller.mm
153
- (MCNotificationController*)
notificationController
{
/packages/apps/Email/tests/src/com/android/email/
NotificationControllerTest.java
31
* Test for {@link
NotificationController
}.
37
private
NotificationController
mTarget;
43
* Subclass {@link
NotificationController
} to override un-mockable operations.
45
private class NotificationControllerForTest extends
NotificationController
{
/packages/apps/Email/src/com/android/email/
SecurityPolicy.java
455
NotificationController
.getInstance(context).showSecurityNeededNotification(account);
503
NotificationController
.getInstance(mContext).showSecurityNeededNotification(account);
505
NotificationController
.getInstance(mContext).showSecurityUnsupportedNotification(
615
NotificationController
.getInstance(mContext).showSecurityUnsupportedNotification(
625
NotificationController
.getInstance(mContext).showSecurityChangedNotification(
635
NotificationController
.getInstance(mContext).showSecurityNeededNotification(account);
646
NotificationController
.getInstance(mContext).cancelSecurityNeededNotification();
[
all
...]
NotificationController.java
64
public class
NotificationController
{
81
private static
NotificationController
sInstance;
91
private
NotificationController
(Context context, Clock clock) {
100
public static synchronized
NotificationController
getInstance(Context context) {
102
sInstance = new
NotificationController
(context, Clock.INSTANCE);
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/
NotificationController.java
48
public class
NotificationController
{
51
public static final String LOG_TAG = "
NotificationController
";
63
public
NotificationController
(Context context) {
PrintSpoolerService.java
101
private
NotificationController
mNotificationController;
116
mNotificationController = new
NotificationController
(PrintSpoolerService.this);
[
all
...]
/frameworks/base/packages/PrintSpooler/
AndroidManifest.xml
77
android:name=".
NotificationController
$NotificationBroadcastReceiver"
/packages/apps/Exchange/src/com/android/exchange/
CalendarSyncEnabler.java
87
// *** Taken from
NotificationController
/packages/apps/Email/src/com/android/email/provider/
AccountReconciler.java
27
import com.android.email.
NotificationController
;
181
NotificationController
.cancelNotifications(context, providerAccount);
/packages/apps/Email/src/com/android/email2/ui/
MailActivityEmail.java
29
import com.android.email.
NotificationController
;
152
NotificationController
.getInstance(context).watchForMessages();
/packages/apps/Exchange/tests/src/com/android/exchange/
CalendarSyncEnablerTest.java
203
// TODO If
NotificationController
supports this notification, we can just mock it out
/external/chromium_org/third_party/WebKit/Source/modules/
modules.gypi
485
'notifications/
NotificationController
.cpp',
486
'notifications/
NotificationController
.h',
Completed in 354 milliseconds
1
2