| Index: components/update_client/update_checker_unittest.cc
|
| diff --git a/components/update_client/update_checker_unittest.cc b/components/update_client/update_checker_unittest.cc
|
| index 85457b9248f53241bb5d6e4f4a6bb635b79d228f..513ebdf03ed618b6417f6cc885d457ba98296204 100644
|
| --- a/components/update_client/update_checker_unittest.cc
|
| +++ b/components/update_client/update_checker_unittest.cc
|
| @@ -47,7 +47,9 @@ class UpdateCheckerTest : public testing::Test {
|
| void SetUp() override;
|
| void TearDown() override;
|
|
|
| - void UpdateCheckComplete(int error, const UpdateResponse::Results& results);
|
| + void UpdateCheckComplete(int error,
|
| + const UpdateResponse::Results& results,
|
| + int retry_after_sec);
|
|
|
| protected:
|
| void Quit();
|
| @@ -129,7 +131,8 @@ void UpdateCheckerTest::Quit() {
|
|
|
| void UpdateCheckerTest::UpdateCheckComplete(
|
| int error,
|
| - const UpdateResponse::Results& results) {
|
| + const UpdateResponse::Results& results,
|
| + int retry_after_sec) {
|
| error_ = error;
|
| results_ = results;
|
| Quit();
|
|
|