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

Unified Diff: chrome/browser/android/offline_pages/downloads/offline_page_notification_bridge.cc

Issue 2489143002: Use new download notification strings (Closed)
Patch Set: merge waiting and pending state Created 4 years, 1 month 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/browser/android/offline_pages/downloads/offline_page_notification_bridge.cc
diff --git a/chrome/browser/android/offline_pages/downloads/offline_page_notification_bridge.cc b/chrome/browser/android/offline_pages/downloads/offline_page_notification_bridge.cc
index a74f381fe122100d2367dd11fcb6d104303544e1..bad76825f625ee09bc0c1cf3877797f6239f4bc2 100644
--- a/chrome/browser/android/offline_pages/downloads/offline_page_notification_bridge.cc
+++ b/chrome/browser/android/offline_pages/downloads/offline_page_notification_bridge.cc
@@ -56,7 +56,8 @@ void OfflinePageNotificationBridge::NotifyDownloadProgress(
Java_OfflinePageNotificationBridge_notifyDownloadProgress(
env, GetApplicationContext(), ConvertUTF8ToJavaString(env, item.guid),
ConvertUTF8ToJavaString(env, item.url.spec()),
- item.start_time.ToJavaTime(), GetDisplayName(item));
+ item.start_time.ToJavaTime(), GetDisplayName(item),
+ item.is_offlining);
}
void OfflinePageNotificationBridge::NotifyDownloadPaused(

Powered by Google App Engine
This is Rietveld 408576698