| Index: chrome/browser/chromeos/file_system_provider/operations/execute_action.h
|
| diff --git a/chrome/browser/chromeos/file_system_provider/operations/execute_action.h b/chrome/browser/chromeos/file_system_provider/operations/execute_action.h
|
| index 55cd75fafa114739ebb54c7438a41b94a68e06b0..18db6817b35139fa4036d6a454b460ed9a98cee8 100644
|
| --- a/chrome/browser/chromeos/file_system_provider/operations/execute_action.h
|
| +++ b/chrome/browser/chromeos/file_system_provider/operations/execute_action.h
|
| @@ -5,12 +5,12 @@
|
| #ifndef CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_OPERATIONS_EXECUTE_ACTION_H_
|
| #define CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_OPERATIONS_EXECUTE_ACTION_H_
|
|
|
| +#include <memory>
|
| #include <string>
|
| #include <vector>
|
|
|
| #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"
|
| @@ -45,10 +45,10 @@ class ExecuteAction : 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:
|
|
|