Chromium Code Reviews| Index: components/offline_pages/background/request_picker.h |
| diff --git a/components/offline_pages/background/request_picker.h b/components/offline_pages/background/request_picker.h |
| index 6b8af8f43bfa49e4039d533df769dadc3dd942c1..1d7e24a99b39b3e1eb770f42f8a976286c467796 100644 |
| --- a/components/offline_pages/background/request_picker.h |
| +++ b/components/offline_pages/background/request_picker.h |
| @@ -32,7 +32,7 @@ class RequestPicker { |
| // conditions, and call back to the RequestCoordinator when we have one. |
| void ChooseNextRequest( |
| RequestCoordinator::RequestPickedCallback picked_callback, |
| - RequestCoordinator::RequestQueueEmptyCallback empty_callback, |
| + RequestCoordinator::RequestNotPickedCallback empty_callback, |
|
dougarnett
2016/09/01 18:24:13
not_picked_callback ?
Pete Williamson
2016/09/01 21:56:08
Done.
|
| DeviceConditions* device_conditions); |
| private: |
| @@ -92,7 +92,7 @@ class RequestPicker { |
| // Callback for when we are done picking a request to do next. |
| RequestCoordinator::RequestPickedCallback picked_callback_; |
| // Callback for when there are no more reqeusts to pick. |
| - RequestCoordinator::RequestQueueEmptyCallback empty_callback_; |
| + RequestCoordinator::RequestNotPickedCallback not_picked_callback_; |
| // Allows us to pass a weak pointer to callbacks. |
| base::WeakPtrFactory<RequestPicker> weak_ptr_factory_; |
| }; |