Chromium Code Reviews| Index: chrome/android/java/src/org/chromium/chrome/browser/notifications/NotificationService.java |
| diff --git a/chrome/android/java/src/org/chromium/chrome/browser/notifications/NotificationService.java b/chrome/android/java/src/org/chromium/chrome/browser/notifications/NotificationService.java |
| index 5b18a474f478cab86475b72b76408ddad597aca1..6c75de468a382d82102c209386c4addd33ba4974 100644 |
| --- a/chrome/android/java/src/org/chromium/chrome/browser/notifications/NotificationService.java |
| +++ b/chrome/android/java/src/org/chromium/chrome/browser/notifications/NotificationService.java |
| @@ -67,7 +67,7 @@ public class NotificationService extends IntentService { |
| /** |
| * Initializes Chrome and starts the browser process if it's not running as of yet, and |
| - * dispatch |intent| to the NotificationUIManager once this is done. |
| + * dispatch |intent| to the NotificationPlatformBridge once this is done. |
| * |
| * @param intent The intent containing the notification's information. |
| */ |
| @@ -78,7 +78,7 @@ public class NotificationService extends IntentService { |
| // Now that the browser process is initialized, we pass forward the call to the |
| // Notification UI Manager which will take care of delivering the appropriate events. |
|
Peter Beverloo
2016/04/26 17:06:02
nit: update comment
Miguel Garcia
2016/04/26 20:10:31
Done.
|
| - if (!NotificationUIManager.dispatchNotificationEvent(intent)) { |
| + if (!NotificationPlatformBridge.dispatchNotificationEvent(intent)) { |
| Log.w(TAG, "Unable to dispatch the notification event to Chrome."); |
| } |