| Index: chrome/browser/media_galleries/fileapi/native_media_file_util_unittest.cc
 | 
| diff --git a/chrome/browser/media_galleries/fileapi/native_media_file_util_unittest.cc b/chrome/browser/media_galleries/fileapi/native_media_file_util_unittest.cc
 | 
| index 2c4b1b6df4b044fc9b15a4392c35db5d3538fbb6..99c1120b68a2253497211afb635f37f5d09d60c5 100644
 | 
| --- a/chrome/browser/media_galleries/fileapi/native_media_file_util_unittest.cc
 | 
| +++ b/chrome/browser/media_galleries/fileapi/native_media_file_util_unittest.cc
 | 
| @@ -14,6 +14,7 @@
 | 
|  #include "base/files/scoped_temp_dir.h"
 | 
|  #include "base/format_macros.h"
 | 
|  #include "base/macros.h"
 | 
| +#include "base/memory/ptr_util.h"
 | 
|  #include "base/message_loop/message_loop.h"
 | 
|  #include "base/run_loop.h"
 | 
|  #include "base/strings/stringprintf.h"
 | 
| @@ -127,8 +128,9 @@ class NativeMediaFileUtilTest : public testing::Test {
 | 
|      scoped_refptr<storage::SpecialStoragePolicy> storage_policy =
 | 
|          new content::MockSpecialStoragePolicy();
 | 
|  
 | 
| -    ScopedVector<storage::FileSystemBackend> additional_providers;
 | 
| -    additional_providers.push_back(new MediaFileSystemBackend(
 | 
| +    std::vector<std::unique_ptr<storage::FileSystemBackend>>
 | 
| +        additional_providers;
 | 
| +    additional_providers.push_back(base::MakeUnique<MediaFileSystemBackend>(
 | 
|          data_dir_.GetPath(), base::ThreadTaskRunnerHandle::Get().get()));
 | 
|  
 | 
|      file_system_context_ = new storage::FileSystemContext(
 | 
| 
 |