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

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

Issue 2737723002: Downloads : Last access time update for NTP, duplicate infobar and notifications (Closed)
Patch Set: Removed changes for duplicate infobar 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 85a6c7786c872e1c8a22d066faae17c8e92fb20e..8c5aee90eedf932e5c7cc33fa519a180215b750f 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
@@ -281,8 +281,8 @@ public class SystemDownloadNotifier implements DownloadNotifier, Observer {
case DOWNLOAD_NOTIFICATION_TYPE_SUCCESS:
final int notificationId = mBoundService.notifyDownloadSuccessful(
info.getDownloadGuid(), info.getFilePath(), info.getFileName(),
- notificationInfo.systemDownloadId, info.isOfflinePage(),
- notificationInfo.isSupportedMimeType);
+ notificationInfo.systemDownloadId, info.isOffTheRecord(),
+ info.isOfflinePage(), notificationInfo.isSupportedMimeType);
onSuccessNotificationShown(notificationInfo, notificationId);
break;
case DOWNLOAD_NOTIFICATION_TYPE_FAILURE:

Powered by Google App Engine
This is Rietveld 408576698