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