| Index: chrome/browser/sync/profile_sync_service_factory_unittest.cc
|
| diff --git a/chrome/browser/sync/profile_sync_service_factory_unittest.cc b/chrome/browser/sync/profile_sync_service_factory_unittest.cc
|
| index 0c38068fcbc1d8fc281db1e442fc76b62825f09f..4f7ac953de492222ed1f47224fc8b1bc5b1e0376 100644
|
| --- a/chrome/browser/sync/profile_sync_service_factory_unittest.cc
|
| +++ b/chrome/browser/sync/profile_sync_service_factory_unittest.cc
|
| @@ -2,12 +2,14 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| +#include "chrome/browser/sync/profile_sync_service_factory.h"
|
| +
|
| #include <stddef.h>
|
|
|
| +#include <memory>
|
| +
|
| #include "base/command_line.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "build/build_config.h"
|
| -#include "chrome/browser/sync/profile_sync_service_factory.h"
|
| #include "chrome/test/base/testing_profile.h"
|
| #include "components/browser_sync/browser/profile_sync_service.h"
|
| #include "components/browser_sync/common/browser_sync_switches.h"
|
| @@ -98,7 +100,7 @@ class ProfileSyncServiceFactoryTest : public testing::Test {
|
|
|
| private:
|
| content::TestBrowserThreadBundle thread_bundle_;
|
| - scoped_ptr<Profile> profile_;
|
| + std::unique_ptr<Profile> profile_;
|
| };
|
|
|
| // Verify that the disable sync flag disables creation of the sync service.
|
|
|