| Index: chrome/browser/sync/sync_startup_tracker_unittest.cc
|
| diff --git a/chrome/browser/sync/sync_startup_tracker_unittest.cc b/chrome/browser/sync/sync_startup_tracker_unittest.cc
|
| index f3e8bd0828696e49520c60bf596e3d09b4c2a2cf..195c6a67261a5396325365bceba08cd7d1088b78 100644
|
| --- a/chrome/browser/sync/sync_startup_tracker_unittest.cc
|
| +++ b/chrome/browser/sync/sync_startup_tracker_unittest.cc
|
| @@ -2,10 +2,12 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#include "base/memory/scoped_ptr.h"
|
| +#include "chrome/browser/sync/sync_startup_tracker.h"
|
| +
|
| +#include <memory>
|
| +
|
| #include "chrome/browser/sync/profile_sync_service_factory.h"
|
| #include "chrome/browser/sync/profile_sync_test_util.h"
|
| -#include "chrome/browser/sync/sync_startup_tracker.h"
|
| #include "chrome/test/base/testing_profile.h"
|
| #include "content/public/test/test_browser_thread_bundle.h"
|
| #include "testing/gmock/include/gmock/gmock.h"
|
| @@ -61,7 +63,7 @@ class SyncStartupTrackerTest : public testing::Test {
|
|
|
| content::TestBrowserThreadBundle thread_bundle_;
|
| GoogleServiceAuthError no_error_;
|
| - scoped_ptr<TestingProfile> profile_;
|
| + std::unique_ptr<TestingProfile> profile_;
|
| ProfileSyncServiceMock* mock_pss_;
|
| MockObserver observer_;
|
| };
|
|
|