| Index: components/offline_pages/background/request_coordinator.cc
|
| diff --git a/components/offline_pages/background/request_coordinator.cc b/components/offline_pages/background/request_coordinator.cc
|
| index 20f2e745127286af88e9539a9237b181eaf422c9..cde6cede1f0810c79d13b57acbe799e983b330d1 100644
|
| --- a/components/offline_pages/background/request_coordinator.cc
|
| +++ b/components/offline_pages/background/request_coordinator.cc
|
| @@ -69,7 +69,7 @@ RequestCoordinator::RequestCoordinator(std::unique_ptr<OfflinerPolicy> policy,
|
| RequestCoordinator::~RequestCoordinator() {}
|
|
|
| bool RequestCoordinator::SavePageLater(
|
| - const GURL& url, const ClientId& client_id, bool was_user_requested) {
|
| + const GURL& url, const ClientId& client_id, bool user_requested) {
|
| DVLOG(2) << "URL is " << url << " " << __func__;
|
|
|
| if (!OfflinePageModel::CanSaveURL(url)) {
|
| @@ -82,7 +82,7 @@ bool RequestCoordinator::SavePageLater(
|
|
|
| // Build a SavePageRequest.
|
| offline_pages::SavePageRequest request(
|
| - id++, url, client_id, base::Time::Now(), was_user_requested);
|
| + id++, url, client_id, base::Time::Now(), user_requested);
|
|
|
| // Put the request on the request queue.
|
| queue_->AddRequest(request,
|
|
|