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

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

Issue 2641973003: Implement server-suggested update check backoff (Closed)
Patch Set: 2 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
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 153543f1ffd1373416b10988958d1fb34f0d05e5..d7b30982d7687199c80016ed85f3ecca0bb7d610 100644
--- a/chrome/browser/android/webapk/webapk_install_service.cc
+++ b/chrome/browser/android/webapk/webapk_install_service.cc
@@ -64,7 +64,8 @@ void WebApkInstallService::OnFinishedInstall(
const GURL& web_manifest_url,
const FinishCallback& finish_callback,
bool success,
- const std::string& webapk_package_name) {
- finish_callback.Run(success, webapk_package_name);
+ const std::string& webapk_package_name,
+ bool less_updates) {
dominickn 2017/02/14 04:13:34 relax_updates
Xi Han 2017/02/14 22:25:47 Done.
+ finish_callback.Run(success, webapk_package_name, less_updates);
installs_.erase(web_manifest_url);
}

Powered by Google App Engine
This is Rietveld 408576698