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

Unified Diff: content/browser/fileapi/browser_file_system_helper.cc

Issue 1545243002: Convert Pass()→std::move() in //content/browser (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
Index: content/browser/fileapi/browser_file_system_helper.cc
diff --git a/content/browser/fileapi/browser_file_system_helper.cc b/content/browser/fileapi/browser_file_system_helper.cc
index ee8ffb254f67ab6e8b328ab403ef8c5f73fbfc4d..64402cd54e3ae08dc98a925f12920f0d07a8193e 100644
--- a/content/browser/fileapi/browser_file_system_helper.cc
+++ b/content/browser/fileapi/browser_file_system_helper.cc
@@ -5,8 +5,8 @@
#include "content/browser/fileapi/browser_file_system_helper.h"
#include <stddef.h>
-
#include <string>
+#include <utility>
#include <vector>
#include "base/command_line.h"
@@ -79,12 +79,9 @@ scoped_refptr<storage::FileSystemContext> CreateFileSystemContext(
BrowserThread::GetMessageLoopProxyForThread(BrowserThread::IO).get(),
file_task_runner.get(),
BrowserContext::GetMountPoints(browser_context),
- browser_context->GetSpecialStoragePolicy(),
- quota_manager_proxy,
- additional_backends.Pass(),
- url_request_auto_mount_handlers,
- profile_path,
- CreateBrowserFileSystemOptions(is_incognito));
+ browser_context->GetSpecialStoragePolicy(), quota_manager_proxy,
+ std::move(additional_backends), url_request_auto_mount_handlers,
+ profile_path, CreateBrowserFileSystemOptions(is_incognito));
std::vector<storage::FileSystemType> types;
file_system_context->GetFileSystemTypes(&types);
« no previous file with comments | « content/browser/fileapi/blob_url_request_job_unittest.cc ('k') | content/browser/fileapi/chrome_blob_storage_context.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698