| Index: chrome/browser/ui/startup/startup_browser_creator_impl.cc
|
| diff --git a/chrome/browser/ui/startup/startup_browser_creator_impl.cc b/chrome/browser/ui/startup/startup_browser_creator_impl.cc
|
| index 7e2acecd9354d8a29bbb2bea2471b2354aa5fa68..6ac0bc7995f6adb478176f1e6f4da8d15eb55410 100644
|
| --- a/chrome/browser/ui/startup/startup_browser_creator_impl.cc
|
| +++ b/chrome/browser/ui/startup/startup_browser_creator_impl.cc
|
| @@ -8,6 +8,7 @@
|
| #include <stdint.h>
|
|
|
| #include <algorithm>
|
| +#include <memory>
|
| #include <vector>
|
|
|
| #include "apps/app_restore_service.h"
|
| @@ -18,7 +19,6 @@
|
| #include "base/compiler_specific.h"
|
| #include "base/environment.h"
|
| #include "base/lazy_instance.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "base/metrics/histogram_macros.h"
|
| #include "base/metrics/statistics_recorder.h"
|
| #include "base/strings/string_number_conversions.h"
|
| @@ -157,7 +157,7 @@ LaunchMode GetLaunchShortcutKind() {
|
| else
|
| return LM_SHORTCUT_QUICKLAUNCH;
|
| }
|
| - scoped_ptr<base::Environment> env(base::Environment::Create());
|
| + std::unique_ptr<base::Environment> env(base::Environment::Create());
|
| std::string appdata_path;
|
| env->GetVar("USERPROFILE", &appdata_path);
|
| if (!appdata_path.empty() &&
|
|
|