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