From 15ecd66e89a3a6be11e416788f3214d97ea0662a Mon Sep 17 00:00:00 2001 From: skyostil Date: Fri, 26 Feb 2016 08:18:32 -0800 Subject: Add some missing std::move()s following a previous refactoring This patch adds some std::move() calls as a follow-up to https://codereview.chromium.org/1730533002/. No functional changes. BUG=546953 TBR=rsleevi@chromium.org Review URL: https://codereview.chromium.org/1736273002 Cr-Commit-Position: refs/heads/master@{#377898} --- extensions/shell/browser/shell_url_request_context_getter.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'extensions/shell') diff --git a/extensions/shell/browser/shell_url_request_context_getter.cc b/extensions/shell/browser/shell_url_request_context_getter.cc index abd5aed..54f2237 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), -- cgit v1.1