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

Unified Diff: extensions/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
« no previous file with comments | « content/shell/browser/shell_url_request_context_getter.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/shell/browser/shell_url_request_context_getter.cc
diff --git a/extensions/shell/browser/shell_url_request_context_getter.cc b/extensions/shell/browser/shell_url_request_context_getter.cc
index abd5aede4792ff9b7bbc4efbf1aa108e12c48fc2..54f223741c344726ead337b17f707635b220f9d0 100644
--- a/extensions/shell/browser/shell_url_request_context_getter.cc
+++ b/extensions/shell/browser/shell_url_request_context_getter.cc
@@ -25,8 +25,8 @@ ShellURLRequestContextGetter::ShellURLRequestContextGetter(
InfoMap* extension_info_map)
: content::ShellURLRequestContextGetter(ignore_certificate_errors,
base_path,
- io_task_runner,
- file_task_runner,
+ std::move(io_task_runner),
+ std::move(file_task_runner),
protocol_handlers,
std::move(request_interceptors),
net_log),
« no previous file with comments | « content/shell/browser/shell_url_request_context_getter.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698