| 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 c27a7826f4bd10a1b15e6edf067517799715ca6f..85a6c7786c872e1c8a22d066faae17c8e92fb20e 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
|
| @@ -299,7 +299,9 @@ public class SystemDownloadNotifier implements DownloadNotifier, Observer {
|
| assert false;
|
| }
|
|
|
| - if (mBoundService != null) mBoundService.hideSummaryNotificationIfNecessary();
|
| + // 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 (autoRelease) unbindServiceIfNeeded();
|
| }
|
| }
|
|
|