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

Unified Diff: chrome/browser/android/webapk/webapk_installer.h

Issue 2381023003: Retry WebAPK download if fails for the first time. (Closed)
Patch Set: Created 4 years, 3 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/browser/android/webapk/webapk_installer.h
diff --git a/chrome/browser/android/webapk/webapk_installer.h b/chrome/browser/android/webapk/webapk_installer.h
index d30a83ace5195794e5b5cb9d0a1809b790774c48..b4b5ed1f8c5a6f3daffcd602a59750fd251347c7 100644
--- a/chrome/browser/android/webapk/webapk_installer.h
+++ b/chrome/browser/android/webapk/webapk_installer.h
@@ -149,6 +149,11 @@ class WebApkInstaller : public net::URLFetcherDelegate {
void OnGotWebApkDownloadUrl(const GURL& download_url,
const std::string& package_name);
+ // Downloads the WebAPK from the given |download_url|.
+ void DownloadWebApk(const base::FilePath& output_path,
+ const GURL& download_url,
+ bool retry_if_fails);
+
// Called once the sub directory to store the downloaded WebAPK was
// created with permissions set properly or if creation failed.
void OnCreatedSubDirAndSetPermissions(const GURL& download_url,
@@ -157,7 +162,11 @@ class WebApkInstaller : public net::URLFetcherDelegate {
// Called once the WebAPK has been downloaded. Makes the downloaded WebAPK
// world readable and installs the WebAPK if the download was successful.
// |file_path| is the file path that the WebAPK was downloaded to.
+ // If |retry_if_fails| is true, will post a delayed task and retry the
+ // download after 2 seconds.
void OnWebApkDownloaded(const base::FilePath& file_path,
+ const GURL& download_url,
+ bool retry_if_fails,
FileDownloader::Result result);
// Called once the downloaded WebAPK has been made world readable. Installs
« no previous file with comments | « no previous file | chrome/browser/android/webapk/webapk_installer.cc » ('j') | chrome/browser/android/webapk/webapk_installer.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698