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

Unified Diff: ash/shell/content/client/shell_content_browser_client.cc

Issue 1547223002: Convert Pass()→std::move() in //ash (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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 | « ash/shell/app_list.cc ('k') | ash/shell/window_type_launcher.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/shell/content/client/shell_content_browser_client.cc
diff --git a/ash/shell/content/client/shell_content_browser_client.cc b/ash/shell/content/client/shell_content_browser_client.cc
index 287b5968783878b6298cf0de1001d1518fb9e927..1329a654c085fe1e2e58d92506c12fc542c6e88b 100644
--- a/ash/shell/content/client/shell_content_browser_client.cc
+++ b/ash/shell/content/client/shell_content_browser_client.cc
@@ -4,6 +4,8 @@
#include "ash/shell/content/client/shell_content_browser_client.h"
+#include <utility>
+
#include "ash/shell/content/client/shell_browser_main_parts.h"
#include "base/command_line.h"
#include "content/shell/browser/shell_browser_context.h"
@@ -30,7 +32,7 @@ net::URLRequestContextGetter* ShellContentBrowserClient::CreateRequestContext(
content::ShellBrowserContext* shell_context =
static_cast<content::ShellBrowserContext*>(content_browser_context);
return shell_context->CreateRequestContext(protocol_handlers,
- request_interceptors.Pass());
+ std::move(request_interceptors));
}
content::ShellBrowserContext* ShellContentBrowserClient::browser_context() {
« no previous file with comments | « ash/shell/app_list.cc ('k') | ash/shell/window_type_launcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698