| Index: components/offline_pages/background/request_coordinator_unittest.cc
|
| diff --git a/components/offline_pages/background/request_coordinator_unittest.cc b/components/offline_pages/background/request_coordinator_unittest.cc
|
| index 95856826344349bcfbe9a435467f5d4021ae9446..08a187a231f629d2b8e30169642f2254a0089c91 100644
|
| --- a/components/offline_pages/background/request_coordinator_unittest.cc
|
| +++ b/components/offline_pages/background/request_coordinator_unittest.cc
|
| @@ -91,7 +91,7 @@ class RequestCoordinatorTest
|
| }
|
|
|
| // Empty callback function
|
| - void EmptyCallbackFunction() {
|
| + void EmptyCallbackFunction(bool result) {
|
| }
|
|
|
| // Callback for getting requests.
|
| @@ -145,7 +145,7 @@ void RequestCoordinatorTest::GetRequestsDone(
|
| }
|
|
|
| TEST_F(RequestCoordinatorTest, StartProcessingWithNoRequests) {
|
| - RequestCoordinator::ProcessingDoneCallback callback =
|
| + base::Callback<void(bool)> callback =
|
| base::Bind(
|
| &RequestCoordinatorTest::EmptyCallbackFunction,
|
| base::Unretained(this));
|
|
|