| Index: chrome/browser/chromeos/file_system_provider/operations/create_file.cc
|
| diff --git a/chrome/browser/chromeos/file_system_provider/operations/create_file.cc b/chrome/browser/chromeos/file_system_provider/operations/create_file.cc
|
| index c8a8e78aa9c0dbd8671bbb75ad01e68e7dca2cbd..a9616e3ec0ec13d9bfec67e3e242b862b670251c 100644
|
| --- a/chrome/browser/chromeos/file_system_provider/operations/create_file.cc
|
| +++ b/chrome/browser/chromeos/file_system_provider/operations/create_file.cc
|
| @@ -45,13 +45,13 @@ bool CreateFile::Execute(int request_id) {
|
| }
|
|
|
| void CreateFile::OnSuccess(int /* request_id */,
|
| - scoped_ptr<RequestValue> /* result */,
|
| + std::unique_ptr<RequestValue> /* result */,
|
| bool has_more) {
|
| callback_.Run(base::File::FILE_OK);
|
| }
|
|
|
| void CreateFile::OnError(int /* request_id */,
|
| - scoped_ptr<RequestValue> /* result */,
|
| + std::unique_ptr<RequestValue> /* result */,
|
| base::File::Error error) {
|
| callback_.Run(error);
|
| }
|
|
|