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

Unified Diff: chrome/android/java/src/org/chromium/chrome/browser/notifications/NotificationService.java

Issue 1919183003: Rename NotificationUIManager to NotificationPlatformBridge (1/2) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 months 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: 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.");
}

Powered by Google App Engine
This is Rietveld 408576698