Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(470)

Unified Diff: services/notifications/src/org/chromium/mojo/notifications/NotificationServiceImpl.java

Issue 1476823003: Fix notifications. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: modified mojom to allow client to device to play sound/vibrate/lights. Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: services/notifications/src/org/chromium/mojo/notifications/NotificationServiceImpl.java
diff --git a/services/notifications/src/org/chromium/mojo/notifications/NotificationServiceImpl.java b/services/notifications/src/org/chromium/mojo/notifications/NotificationServiceImpl.java
index 65347260dfaa9262fff7f2adcbd2be5c8f991d58..a9cc28b935db8fb8e1c1045685dacf7cbf4f4f98 100644
--- a/services/notifications/src/org/chromium/mojo/notifications/NotificationServiceImpl.java
+++ b/services/notifications/src/org/chromium/mojo/notifications/NotificationServiceImpl.java
@@ -45,7 +45,7 @@ class NotificationServiceImpl implements NotificationService,
mNotificationClientMap = new SparseArray<NotificationClient>();
mNotificationManagerTag = toString();
IntentReceiverManager intentReceiverManager = ShellHelper.connectToService(
- core, shell, "mojo:android_handler", IntentReceiverManager.MANAGER);
+ core, shell, "mojo:intent_receiver", IntentReceiverManager.MANAGER);
mNotificationBuilder = new NotificationBuilder(
context, intentReceiverManager, notificationIconResourceId, this, this);
mNextNotificationId = 1;

Powered by Google App Engine
This is Rietveld 408576698