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

Unified Diff: content/shell/browser/shell_url_request_context_getter.cc

Issue 1736273002: Add some missing std::move()s following a previous refactoring (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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
Index: content/shell/browser/shell_url_request_context_getter.cc
diff --git a/content/shell/browser/shell_url_request_context_getter.cc b/content/shell/browser/shell_url_request_context_getter.cc
index 02fd3f110d96dfccc578abf591991883002da80f..6fd751ee00bf983c5ef5b957be600406bb3690b3 100644
--- a/content/shell/browser/shell_url_request_context_getter.cc
+++ b/content/shell/browser/shell_url_request_context_getter.cc
@@ -74,8 +74,8 @@ ShellURLRequestContextGetter::ShellURLRequestContextGetter(
net::NetLog* net_log)
: ignore_certificate_errors_(ignore_certificate_errors),
base_path_(base_path),
- io_task_runner_(io_task_runner),
- file_task_runner_(file_task_runner),
+ io_task_runner_(std::move(io_task_runner)),
+ file_task_runner_(std::move(file_task_runner)),
net_log_(net_log),
request_interceptors_(std::move(request_interceptors)) {
// Must first be created on the UI thread.

Powered by Google App Engine
This is Rietveld 408576698