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