| Index: services/shell/background/tests/background_shell_unittest.cc
|
| diff --git a/services/shell/background/tests/background_shell_unittest.cc b/services/shell/background/tests/background_shell_unittest.cc
|
| index b73c41ba685e386a2b2e429c14f48e1f980cdf6d..ca3bdb370932ae3a54fbc0b1707b62726a99f6dd 100644
|
| --- a/services/shell/background/tests/background_shell_unittest.cc
|
| +++ b/services/shell/background/tests/background_shell_unittest.cc
|
| @@ -32,7 +32,7 @@ class ServiceImpl : public Service {
|
| std::unique_ptr<TestCatalogStore> BuildTestCatalogStore() {
|
| std::unique_ptr<base::ListValue> apps(new base::ListValue);
|
| apps->Append(BuildPermissiveSerializedAppInfo(kTestName, "test"));
|
| - return base::WrapUnique(new TestCatalogStore(std::move(apps)));
|
| + return base::MakeUnique<TestCatalogStore>(std::move(apps));
|
| }
|
|
|
| void SetFlagAndRunClosure(bool* flag, const base::Closure& closure) {
|
|
|