| Index: storage/browser/fileapi/sandbox_file_system_backend.cc
|
| diff --git a/storage/browser/fileapi/sandbox_file_system_backend.cc b/storage/browser/fileapi/sandbox_file_system_backend.cc
|
| index c8b7f37593393505206014f794887ddf8ded6ac8..2b64193a5f26f145aec4ec721e335a914ab3876c 100644
|
| --- a/storage/browser/fileapi/sandbox_file_system_backend.cc
|
| +++ b/storage/browser/fileapi/sandbox_file_system_backend.cc
|
| @@ -5,6 +5,7 @@
|
| #include "storage/browser/fileapi/sandbox_file_system_backend.h"
|
|
|
| #include <stdint.h>
|
| +#include <utility>
|
|
|
| #include "base/bind.h"
|
| #include "base/files/file_util.h"
|
| @@ -119,7 +120,8 @@ FileSystemOperation* SandboxFileSystemBackend::CreateFileSystemOperation(
|
| else
|
| operation_context->set_quota_limit_type(storage::kQuotaLimitTypeLimited);
|
|
|
| - return FileSystemOperation::Create(url, context, operation_context.Pass());
|
| + return FileSystemOperation::Create(url, context,
|
| + std::move(operation_context));
|
| }
|
|
|
| bool SandboxFileSystemBackend::SupportsStreaming(
|
|
|