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

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

Issue 2832433002: [Android O] Refactor channel definitions into new class (Closed)
Patch Set: rebase Created 3 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/NotificationManagerProxy.java
diff --git a/chrome/android/java/src/org/chromium/chrome/browser/notifications/NotificationManagerProxy.java b/chrome/android/java/src/org/chromium/chrome/browser/notifications/NotificationManagerProxy.java
index 75ea39bf68f8cd1b02117712cc8db095c6f148f1..150862bf0042b131a52c017a697dcac20e53d57e 100644
--- a/chrome/android/java/src/org/chromium/chrome/browser/notifications/NotificationManagerProxy.java
+++ b/chrome/android/java/src/org/chromium/chrome/browser/notifications/NotificationManagerProxy.java
@@ -18,10 +18,10 @@ public interface NotificationManagerProxy {
void cancel(int id);
void cancel(String tag, int id);
void cancelAll();
- void createNotificationChannel(ChannelsInitializer.Channel channel);
- void createNotificationChannelGroup(ChannelsInitializer.ChannelGroup channelGroup);
+ void createNotificationChannel(ChannelDefinitions.Channel channel);
+ void createNotificationChannelGroup(ChannelDefinitions.ChannelGroup channelGroup);
List<String> getNotificationChannelIds();
- void deleteNotificationChannel(@ChannelsInitializer.ChannelId String id);
+ void deleteNotificationChannel(@ChannelDefinitions.ChannelId String id);
void notify(int id, Notification notification);
void notify(String tag, int id, Notification notification);

Powered by Google App Engine
This is Rietveld 408576698