| Index: chrome/browser/ui/app_list/arc/arc_app_utils.cc
|
| diff --git a/chrome/browser/ui/app_list/arc/arc_app_utils.cc b/chrome/browser/ui/app_list/arc/arc_app_utils.cc
|
| index ad6a80cb37ab418317416adc632b86b9e1a1570f..9ca398400f10eacc57d726163d98b254805701f3 100644
|
| --- a/chrome/browser/ui/app_list/arc/arc_app_utils.cc
|
| +++ b/chrome/browser/ui/app_list/arc/arc_app_utils.cc
|
| @@ -126,7 +126,7 @@ bool LaunchAppWithRect(content::BrowserContext* context,
|
| ArcAppListPrefs* prefs = ArcAppListPrefs::Get(context);
|
| CHECK(prefs);
|
|
|
| - scoped_ptr<ArcAppListPrefs::AppInfo> app_info = prefs->GetApp(app_id);
|
| + std::unique_ptr<ArcAppListPrefs::AppInfo> app_info = prefs->GetApp(app_id);
|
| if (!app_info) {
|
| VLOG(2) << "Cannot launch unavailable app: " << app_id << ".";
|
| return false;
|
| @@ -172,7 +172,7 @@ bool CanHandleResolution(content::BrowserContext* context,
|
| const gfx::Rect& rect,
|
| const CanHandleResolutionCallback& callback) {
|
| ArcAppListPrefs* prefs = ArcAppListPrefs::Get(context);
|
| - scoped_ptr<ArcAppListPrefs::AppInfo> app_info = prefs->GetApp(app_id);
|
| + std::unique_ptr<ArcAppListPrefs::AppInfo> app_info = prefs->GetApp(app_id);
|
| if (!app_info) {
|
| VLOG(2) << "Cannot test resolution capability of unavailable app:" << app_id
|
| << ".";
|
|
|