| Index: chrome/browser/chromeos/extensions/file_manager/private_api_dialog.cc
 | 
| diff --git a/chrome/browser/chromeos/extensions/file_manager/private_api_dialog.cc b/chrome/browser/chromeos/extensions/file_manager/private_api_dialog.cc
 | 
| index 979f44a729d8a94b8c0dcb1c4d53ef9d6d85b074..b2985945180521028a90837e33181e26ecb44f8e 100644
 | 
| --- a/chrome/browser/chromeos/extensions/file_manager/private_api_dialog.cc
 | 
| +++ b/chrome/browser/chromeos/extensions/file_manager/private_api_dialog.cc
 | 
| @@ -36,7 +36,7 @@ bool FileManagerPrivateCancelDialogFunction::RunAsync() {
 | 
|  
 | 
|  bool FileManagerPrivateSelectFileFunction::RunAsync() {
 | 
|    using extensions::api::file_manager_private::SelectFile::Params;
 | 
| -  const scoped_ptr<Params> params(Params::Create(*args_));
 | 
| +  const std::unique_ptr<Params> params(Params::Create(*args_));
 | 
|    EXTENSION_FUNCTION_VALIDATE(params);
 | 
|  
 | 
|    std::vector<GURL> file_paths;
 | 
| @@ -77,7 +77,7 @@ void FileManagerPrivateSelectFileFunction::GetSelectedFileInfoResponse(
 | 
|  
 | 
|  bool FileManagerPrivateSelectFilesFunction::RunAsync() {
 | 
|    using extensions::api::file_manager_private::SelectFiles::Params;
 | 
| -  const scoped_ptr<Params> params(Params::Create(*args_));
 | 
| +  const std::unique_ptr<Params> params(Params::Create(*args_));
 | 
|    EXTENSION_FUNCTION_VALIDATE(params);
 | 
|  
 | 
|    std::vector<GURL> file_urls;
 | 
| 
 |