| Index: components/sync/engine_impl/syncer_util_unittest.cc | 
| diff --git a/components/sync/engine_impl/syncer_util_unittest.cc b/components/sync/engine_impl/syncer_util_unittest.cc | 
| index 5c64a612898a8c98ef69f3cfb72733ffae28cfd9..5ccd27007f80b11550a097cd1aca6f61ee5362aa 100644 | 
| --- a/components/sync/engine_impl/syncer_util_unittest.cc | 
| +++ b/components/sync/engine_impl/syncer_util_unittest.cc | 
| @@ -6,6 +6,7 @@ | 
|  | 
| #include <memory> | 
|  | 
| +#include "base/memory/ptr_util.h" | 
| #include "base/message_loop/message_loop.h" | 
| #include "base/rand_util.h" | 
| #include "components/sync/base/unique_position.h" | 
| @@ -21,7 +22,7 @@ class GetUpdatePositionTest : public ::testing::Test { | 
| public: | 
| void SetUp() override { | 
| dir_maker_.SetUp(); | 
| -    entry_factory_.reset(new TestEntryFactory(directory())); | 
| +    entry_factory_ = base::MakeUnique<TestEntryFactory>(directory()); | 
| } | 
|  | 
| void TearDown() override { dir_maker_.TearDown(); } | 
|  |