| Index: chrome/browser/chromeos/file_system_provider/operations/unmount.h
|
| diff --git a/chrome/browser/chromeos/file_system_provider/operations/unmount.h b/chrome/browser/chromeos/file_system_provider/operations/unmount.h
|
| index 079c82536fea6aa835ca5762a21532016499b917..360bf5233e356fb0b66883dd0f4e999a0378e8ac 100644
|
| --- a/chrome/browser/chromeos/file_system_provider/operations/unmount.h
|
| +++ b/chrome/browser/chromeos/file_system_provider/operations/unmount.h
|
| @@ -5,9 +5,10 @@
|
| #ifndef CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_OPERATIONS_UNMOUNT_H_
|
| #define CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_OPERATIONS_UNMOUNT_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 "storage/browser/fileapi/async_file_util.h"
|
|
|
| @@ -38,10 +39,10 @@ class Unmount : 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:
|
|
|