| Index: chrome/android/java/src/org/chromium/chrome/browser/notifications/NotificationUIManager.java
|
| diff --git a/chrome/android/java/src/org/chromium/chrome/browser/notifications/NotificationUIManager.java b/chrome/android/java/src/org/chromium/chrome/browser/notifications/NotificationUIManager.java
|
| index d75b12692d48fd0fcce753315dc13cdc20af94f8..080df48f179b3bc65f131961b5ee1e08e0e5974e 100644
|
| --- a/chrome/android/java/src/org/chromium/chrome/browser/notifications/NotificationUIManager.java
|
| +++ b/chrome/android/java/src/org/chromium/chrome/browser/notifications/NotificationUIManager.java
|
| @@ -452,7 +452,7 @@ private void displayNotification(long persistentNotificationId, String origin, S
|
| NotificationConstants.ACTION_CLOSE_NOTIFICATION, persistentNotificationId, origin,
|
| profileId, incognito, tag, -1 /* actionIndex */);
|
|
|
| - NotificationBuilder notificationBuilder =
|
| + NotificationBuilderBase notificationBuilder =
|
| createNotificationBuilder()
|
| .setTitle(title)
|
| .setBody(body)
|
| @@ -500,7 +500,7 @@ private void displayNotification(long persistentNotificationId, String origin, S
|
| }
|
| }
|
|
|
| - private NotificationBuilder createNotificationBuilder() {
|
| + private NotificationBuilderBase createNotificationBuilder() {
|
| if (useCustomLayouts()) {
|
| return new CustomNotificationBuilder(mAppContext);
|
| }
|
|
|