| Index: chrome/browser/ui/sync/sync_promo_ui_unittest.cc
|
| diff --git a/chrome/browser/ui/sync/sync_promo_ui_unittest.cc b/chrome/browser/ui/sync/sync_promo_ui_unittest.cc
|
| index 35e889d2d9c3f31d5f142b5a6f2b454e15b3911e..5e521c2b2293199638bbd13324795c0bff692ea0 100644
|
| --- a/chrome/browser/ui/sync/sync_promo_ui_unittest.cc
|
| +++ b/chrome/browser/ui/sync/sync_promo_ui_unittest.cc
|
| @@ -4,10 +4,11 @@
|
|
|
| #include "chrome/browser/ui/sync/sync_promo_ui.h"
|
|
|
| +#include <memory>
|
| +
|
| #include "base/command_line.h"
|
| #include "base/compiler_specific.h"
|
| #include "base/macros.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "build/build_config.h"
|
| #include "chrome/browser/signin/fake_signin_manager_builder.h"
|
| #include "chrome/browser/signin/signin_manager_factory.h"
|
| @@ -37,7 +38,7 @@ class SyncPromoUITest : public testing::Test {
|
| }
|
|
|
| content::TestBrowserThreadBundle thread_bundle_;
|
| - scoped_ptr<TestingProfile> profile_;
|
| + std::unique_ptr<TestingProfile> profile_;
|
|
|
| private:
|
| DISALLOW_COPY_AND_ASSIGN(SyncPromoUITest);
|
|
|