Index: components/drive/chromeos/fake_file_system.cc |
diff --git a/components/drive/chromeos/fake_file_system.cc b/components/drive/chromeos/fake_file_system.cc |
index a7ef97f736b692ae5edb6f157dc5fa8ad39ce267..66f6d47e9c5821f73877659c0a550998a53b4aa1 100644 |
--- a/components/drive/chromeos/fake_file_system.cc |
+++ b/components/drive/chromeos/fake_file_system.cc |
@@ -404,7 +404,8 @@ void FakeFileSystem::GetResourceEntryAfterGetFileList( |
} |
DCHECK(file_list); |
- const ScopedVector<google_apis::FileResource>& entries = file_list->items(); |
+ const std::vector<std::unique_ptr<google_apis::FileResource>>& entries = |
+ file_list->items(); |
for (size_t i = 0; i < entries.size(); ++i) { |
std::unique_ptr<ResourceEntry> entry(new ResourceEntry); |
std::string parent_resource_id; |