| Index: content/browser/storage_partition_impl_map_unittest.cc
|
| diff --git a/content/browser/storage_partition_impl_map_unittest.cc b/content/browser/storage_partition_impl_map_unittest.cc
|
| index b28902f1165411a8ba29cfa46c7013429f7de2b7..2659b8e3374595b69ea5a9c934804a913e8afecf 100644
|
| --- a/content/browser/storage_partition_impl_map_unittest.cc
|
| +++ b/content/browser/storage_partition_impl_map_unittest.cc
|
| @@ -4,6 +4,8 @@
|
|
|
| #include "content/browser/storage_partition_impl_map.h"
|
|
|
| +#include <utility>
|
| +
|
| #include "base/files/file_util.h"
|
| #include "base/run_loop.h"
|
| #include "content/public/browser/browser_thread.h"
|
| @@ -82,8 +84,8 @@ TEST(StoragePartitionImplMapTest, GarbageCollect) {
|
| ASSERT_TRUE(base::CreateDirectory(inactive_path));
|
|
|
| base::RunLoop run_loop;
|
| - storage_partition_impl_map.GarbageCollect(
|
| - active_paths.Pass(), run_loop.QuitClosure());
|
| + storage_partition_impl_map.GarbageCollect(std::move(active_paths),
|
| + run_loop.QuitClosure());
|
| run_loop.Run();
|
| BrowserThread::GetBlockingPool()->FlushForTesting();
|
|
|
|
|