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

Unified Diff: chrome/android/java/src/org/chromium/chrome/browser/download/SystemDownloadNotifier.java

Issue 2751813004: Fix the download summary notification icons (Closed)
Patch Set: Fixed test compile error Created 3 years, 9 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/download/SystemDownloadNotifier.java
diff --git a/chrome/android/java/src/org/chromium/chrome/browser/download/SystemDownloadNotifier.java b/chrome/android/java/src/org/chromium/chrome/browser/download/SystemDownloadNotifier.java
index 8c5aee90eedf932e5c7cc33fa519a180215b750f..108435aa619931d60450b1a5c060f88c613a270f 100644
--- a/chrome/android/java/src/org/chromium/chrome/browser/download/SystemDownloadNotifier.java
+++ b/chrome/android/java/src/org/chromium/chrome/browser/download/SystemDownloadNotifier.java
@@ -301,7 +301,7 @@ public class SystemDownloadNotifier implements DownloadNotifier, Observer {
// Don't need to expose the notification id to ignore. Cancel will automatically call this
// method as well and pass it in.
- if (mBoundService != null) mBoundService.hideSummaryNotificationIfNecessary(null);
+ if (mBoundService != null) mBoundService.hideSummaryNotificationIfNecessary(-1);
if (autoRelease) unbindServiceIfNeeded();
}
}

Powered by Google App Engine
This is Rietveld 408576698