| Index: storage/browser/fileapi/file_system_context.cc
|
| diff --git a/storage/browser/fileapi/file_system_context.cc b/storage/browser/fileapi/file_system_context.cc
|
| index 5ded6c3c02352ef53f5a3e0190323bff50c4dacc..6d84f1ed05d9b579da3be9ca6b777d6b631bdf18 100644
|
| --- a/storage/browser/fileapi/file_system_context.cc
|
| +++ b/storage/browser/fileapi/file_system_context.cc
|
| @@ -6,6 +6,7 @@
|
|
|
| #include <stddef.h>
|
| #include <stdint.h>
|
| +#include <utility>
|
|
|
| #include "base/bind.h"
|
| #include "base/macros.h"
|
| @@ -159,7 +160,7 @@ FileSystemContext::FileSystemContext(
|
| partition_path,
|
| special_storage_policy,
|
| options)),
|
| - additional_backends_(additional_backends.Pass()),
|
| + additional_backends_(std::move(additional_backends)),
|
| auto_mount_handlers_(auto_mount_handlers),
|
| external_mount_points_(external_mount_points),
|
| partition_path_(partition_path),
|
|
|