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

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

Issue 2704853002: Downloads Home - Offline page progress support (Closed)
Patch Set: Fixed wrong function call Created 3 years, 10 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
« no previous file with comments | « no previous file | chrome/android/java/src/org/chromium/chrome/browser/download/ui/DownloadHistoryItemWrapper.java » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/android/java/src/org/chromium/chrome/browser/download/ui/BackendProvider.java
diff --git a/chrome/android/java/src/org/chromium/chrome/browser/download/ui/BackendProvider.java b/chrome/android/java/src/org/chromium/chrome/browser/download/ui/BackendProvider.java
index ba307009616751f662b1b13eb93e106b81a3ee61..63512d012ff271a217968fe2ada9b53d36c99511 100644
--- a/chrome/android/java/src/org/chromium/chrome/browser/download/ui/BackendProvider.java
+++ b/chrome/android/java/src/org/chromium/chrome/browser/download/ui/BackendProvider.java
@@ -58,6 +58,15 @@ public interface BackendProvider {
/** See {@link OfflinePageDownloadBridge#openItem}. */
void openItem(String guid, @Nullable ComponentName componentName);
+ /** See {@link OfflinePageDownloadBridge#pauseDownload} */
+ void pauseDownload(String guid);
+
+ /** See {@link OfflinePageDownloadBridge#resumeDownload} */
+ void resumeDownload(String guid);
+
+ /** See {@link OfflinePageDownloadBridge#cancelDownload} */
+ void cancelDownload(String guid);
+
/** See {@link OfflinePageDownloadBridge#deleteItem}. */
void deleteItem(String guid);
« no previous file with comments | « no previous file | chrome/android/java/src/org/chromium/chrome/browser/download/ui/DownloadHistoryItemWrapper.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698