| Index: chrome/browser/extensions/default_apps_unittest.cc
|
| diff --git a/chrome/browser/extensions/default_apps_unittest.cc b/chrome/browser/extensions/default_apps_unittest.cc
|
| index 0e4f8a4658205bddf79797069678ae8b556e14d7..3251ee4257e59356e7be84e56d3a4681a228d267 100644
|
| --- a/chrome/browser/extensions/default_apps_unittest.cc
|
| +++ b/chrome/browser/extensions/default_apps_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/extensions/default_apps.h"
|
| +
|
| +#include <memory>
|
| +
|
| #include "base/message_loop/message_loop.h"
|
| #include "build/build_config.h"
|
| -#include "chrome/browser/extensions/default_apps.h"
|
| #include "chrome/browser/extensions/external_pref_loader.h"
|
| #include "chrome/common/chrome_paths.h"
|
| #include "chrome/common/pref_names.h"
|
| @@ -43,7 +45,7 @@ class DefaultAppsTest : public testing::Test {
|
| // Chrome OS has different way of installing default apps.
|
| // Android does not currently support installing apps via Chrome.
|
| TEST_F(DefaultAppsTest, Install) {
|
| - scoped_ptr<TestingProfile> profile(new TestingProfile());
|
| + std::unique_ptr<TestingProfile> profile(new TestingProfile());
|
| ExternalLoader* loader = new MockExternalLoader();
|
|
|
| Provider provider(profile.get(), NULL, loader, Manifest::INTERNAL,
|
|
|