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

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

Issue 2589333002: Revert of Revert "Revert of Implement GetDisplayed on android M+ (patchset #3 id:60001 of https://codereview.… (Closed)
Patch Set: Created 4 years 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/NotificationManagerProxyImpl.java
diff --git a/chrome/android/java/src/org/chromium/chrome/browser/notifications/NotificationManagerProxyImpl.java b/chrome/android/java/src/org/chromium/chrome/browser/notifications/NotificationManagerProxyImpl.java
index ece1f75cde2ef1586e854068ef684709f1bb9da9..b05fd0047b17adb015a4506b96e789b5e158fdd9 100644
--- a/chrome/android/java/src/org/chromium/chrome/browser/notifications/NotificationManagerProxyImpl.java
+++ b/chrome/android/java/src/org/chromium/chrome/browser/notifications/NotificationManagerProxyImpl.java
@@ -6,7 +6,6 @@
import android.app.Notification;
import android.app.NotificationManager;
-import android.service.notification.StatusBarNotification;
/**
* Default implementation of the NotificationManagerProxy, which passes through all calls to the
@@ -43,9 +42,4 @@
public void notify(String tag, int id, Notification notification) {
mNotificationManager.notify(tag, id, notification);
}
-
- @Override
- public StatusBarNotification[] getActiveNotifications() {
- return mNotificationManager.getActiveNotifications();
- }
}

Powered by Google App Engine
This is Rietveld 408576698