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

Unified Diff: chrome/browser/android/webapk/webapk_install_service.cc

Issue 2733543002: [Android:WebAPK] Don't add webapp to homescreen if WebAPK install times out part 1/3 (Closed)
Patch Set: Merge branch 'start' into refactor_shortcut_helper3 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/browser/android/webapk/webapk_install_service.cc
diff --git a/chrome/browser/android/webapk/webapk_install_service.cc b/chrome/browser/android/webapk/webapk_install_service.cc
index 07974e577bd8c2feddf46a2e495c00099eff718c..4319c03d4e9f95f95815c05d242b2ed98c142318 100644
--- a/chrome/browser/android/webapk/webapk_install_service.cc
+++ b/chrome/browser/android/webapk/webapk_install_service.cc
@@ -63,9 +63,9 @@ void WebApkInstallService::UpdateAsync(
void WebApkInstallService::OnFinishedInstall(
const GURL& web_manifest_url,
const FinishCallback& finish_callback,
- bool success,
+ WebApkInstallResult result,
bool relax_updates,
const std::string& webapk_package_name) {
- finish_callback.Run(success, relax_updates, webapk_package_name);
+ finish_callback.Run(result, relax_updates, webapk_package_name);
installs_.erase(web_manifest_url);
}
« no previous file with comments | « chrome/browser/android/webapk/webapk_install_service.h ('k') | chrome/browser/android/webapk/webapk_installer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698