| Index: chrome/browser/chromeos/file_system_provider/operations/abort.h
|
| diff --git a/chrome/browser/chromeos/file_system_provider/operations/abort.h b/chrome/browser/chromeos/file_system_provider/operations/abort.h
|
| index 53484fd2daa328be55f2f93ce49069c1d3b33ef3..20bb8ce0ae8ca2333fd323a28d5859c613a62b54 100644
|
| --- a/chrome/browser/chromeos/file_system_provider/operations/abort.h
|
| +++ b/chrome/browser/chromeos/file_system_provider/operations/abort.h
|
| @@ -5,9 +5,10 @@
|
| #ifndef CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_OPERATIONS_ABORT_H_
|
| #define CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_OPERATIONS_ABORT_H_
|
|
|
| +#include <memory>
|
| +
|
| #include "base/files/file.h"
|
| #include "base/macros.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "chrome/browser/chromeos/file_system_provider/operations/operation.h"
|
| #include "chrome/browser/chromeos/file_system_provider/provided_file_system_info.h"
|
| #include "chrome/browser/chromeos/file_system_provider/provided_file_system_interface.h"
|
| @@ -38,10 +39,10 @@ class Abort : public Operation {
|
| // Operation overrides.
|
| bool Execute(int request_id) override;
|
| void OnSuccess(int request_id,
|
| - scoped_ptr<RequestValue> result,
|
| + std::unique_ptr<RequestValue> result,
|
| bool has_more) override;
|
| void OnError(int request_id,
|
| - scoped_ptr<RequestValue> result,
|
| + std::unique_ptr<RequestValue> result,
|
| base::File::Error error) override;
|
|
|
| private:
|
|
|