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

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

Issue 2641973003: Implement server-suggested update check backoff (Closed)
Patch Set: Nits. 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_installer_unittest.cc
diff --git a/chrome/browser/android/webapk/webapk_installer_unittest.cc b/chrome/browser/android/webapk/webapk_installer_unittest.cc
index f16681f8bb658e27fab0f0aa5b197d53669cc5bf..ae4c1cc147d185979e3671fae360cb17a9727b4c 100644
--- a/chrome/browser/android/webapk/webapk_installer_unittest.cc
+++ b/chrome/browser/android/webapk/webapk_installer_unittest.cc
@@ -162,7 +162,9 @@ class WebApkInstallerRunner {
bool success() { return success_; }
private:
- void OnCompleted(bool success, const std::string& webapk_package) {
+ void OnCompleted(bool success,
+ bool relax_updates,
+ const std::string& webapk_package) {
success_ = success;
on_completed_callback_.Run();
}

Powered by Google App Engine
This is Rietveld 408576698