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

Unified Diff: components/offline_pages/background/save_page_request.cc

Issue 2222193002: Fix naming nit was_user_requested to user_requested (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix merge conflict Created 4 years, 4 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
« no previous file with comments | « components/offline_pages/background/request_coordinator.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/offline_pages/background/save_page_request.cc
diff --git a/components/offline_pages/background/save_page_request.cc b/components/offline_pages/background/save_page_request.cc
index 3d5944427c673ec15fc82231313d8ac6ecffaedb..91b3d4ebd5433eaa087b2d8dcc3508e16be3301b 100644
--- a/components/offline_pages/background/save_page_request.cc
+++ b/components/offline_pages/background/save_page_request.cc
@@ -10,7 +10,7 @@ SavePageRequest::SavePageRequest(int64_t request_id,
const GURL& url,
const ClientId& client_id,
const base::Time& creation_time,
- const bool was_user_requested)
+ const bool user_requested)
: request_id_(request_id),
url_(url),
client_id_(client_id),
@@ -18,7 +18,7 @@ SavePageRequest::SavePageRequest(int64_t request_id,
activation_time_(creation_time),
started_attempt_count_(0),
completed_attempt_count_(0),
- user_requested_(was_user_requested),
+ user_requested_(user_requested),
state_(RequestState::AVAILABLE) {}
SavePageRequest::SavePageRequest(int64_t request_id,
« no previous file with comments | « components/offline_pages/background/request_coordinator.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698