| Index: chrome/browser/chromeos/fileapi/file_system_backend.cc
|
| diff --git a/chrome/browser/chromeos/fileapi/file_system_backend.cc b/chrome/browser/chromeos/fileapi/file_system_backend.cc
|
| index 1b11154c4d31dfe19a43c61ddba4553125011149..fc0e1d16791029c3a5ee3f956a7cc9406f2f92c8 100644
|
| --- a/chrome/browser/chromeos/fileapi/file_system_backend.cc
|
| +++ b/chrome/browser/chromeos/fileapi/file_system_backend.cc
|
| @@ -283,8 +283,8 @@ storage::FileSystemOperation* FileSystemBackend::CreateFileSystemOperation(
|
| // MTP file operations run on MediaTaskRunner.
|
| return storage::FileSystemOperation::Create(
|
| url, context,
|
| - base::WrapUnique(new storage::FileSystemOperationContext(
|
| - context, MediaFileSystemBackend::MediaTaskRunner().get())));
|
| + base::MakeUnique<storage::FileSystemOperationContext>(
|
| + context, MediaFileSystemBackend::MediaTaskRunner().get()));
|
| }
|
|
|
| DCHECK(url.type() == storage::kFileSystemTypeNativeLocal ||
|
| @@ -293,7 +293,7 @@ storage::FileSystemOperation* FileSystemBackend::CreateFileSystemOperation(
|
| url.type() == storage::kFileSystemTypeProvided);
|
| return storage::FileSystemOperation::Create(
|
| url, context,
|
| - base::WrapUnique(new storage::FileSystemOperationContext(context)));
|
| + base::MakeUnique<storage::FileSystemOperationContext>(context));
|
| }
|
|
|
| bool FileSystemBackend::SupportsStreaming(
|
|
|