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

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

Issue 2641973003: Implement server-suggested update check backoff (Closed)
Patch Set: Created 3 years, 11 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 556b13a5f1786f54eb0aee9de162f4fc82f3f8a4..e00364d1b84b2c306c875bb1e5e018305898460f 100644
--- a/chrome/browser/android/webapk/webapk_installer_unittest.cc
+++ b/chrome/browser/android/webapk/webapk_installer_unittest.cc
@@ -167,7 +167,8 @@ class WebApkInstallerRunner {
bool success() { return success_; }
private:
- void OnCompleted(bool success, const std::string& webapk_package) {
+ void OnCompleted(bool success,
+ const WebApkInstaller::FinishCallbackData& data) {
success_ = success;
on_completed_callback_.Run();
}

Powered by Google App Engine
This is Rietveld 408576698