| Index: chrome/browser/chromeos/file_system_provider/operations/create_directory.h
|
| diff --git a/chrome/browser/chromeos/file_system_provider/operations/create_directory.h b/chrome/browser/chromeos/file_system_provider/operations/create_directory.h
|
| index 62ec3afc5421cca6d5bd67e41a34a74c9c9d8a19..f19806691163d19083e2e174a37718a297bb8aae 100644
|
| --- a/chrome/browser/chromeos/file_system_provider/operations/create_directory.h
|
| +++ b/chrome/browser/chromeos/file_system_provider/operations/create_directory.h
|
| @@ -5,9 +5,10 @@
|
| #ifndef CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_OPERATIONS_CREATE_DIRECTORY_H_
|
| #define CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_OPERATIONS_CREATE_DIRECTORY_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/request_value.h"
|
| @@ -40,10 +41,10 @@ class CreateDirectory : 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:
|
|
|