| Index: chrome/browser/ui/ash/launcher/arc_app_window_launcher_item_controller.cc | 
| diff --git a/chrome/browser/ui/ash/launcher/arc_app_window_launcher_item_controller.cc b/chrome/browser/ui/ash/launcher/arc_app_window_launcher_item_controller.cc | 
| index be7e605d9c80e33f625859ea7f8efd158bd10180..ce054cfc1583e9447d8f84de61cfbc78d3dab0b9 100644 | 
| --- a/chrome/browser/ui/ash/launcher/arc_app_window_launcher_item_controller.cc | 
| +++ b/chrome/browser/ui/ash/launcher/arc_app_window_launcher_item_controller.cc | 
| @@ -21,7 +21,8 @@ base::string16 ArcAppWindowLauncherItemController::GetTitle() { | 
| ArcAppListPrefs* arc_prefs = | 
| ArcAppListPrefs::Get(launcher_controller()->profile()); | 
| DCHECK(arc_prefs); | 
| -  scoped_ptr<ArcAppListPrefs::AppInfo> app_info = arc_prefs->GetApp(app_id()); | 
| +  std::unique_ptr<ArcAppListPrefs::AppInfo> app_info = | 
| +      arc_prefs->GetApp(app_id()); | 
| if (!app_info) { | 
| NOTREACHED(); | 
| return base::string16(); | 
|  |