| Index: chrome/browser/chromeos/file_system_provider/operations/truncate.h
|
| diff --git a/chrome/browser/chromeos/file_system_provider/operations/truncate.h b/chrome/browser/chromeos/file_system_provider/operations/truncate.h
|
| index 487a66f7552a63206941a75b3598e466022c5ab3..7712fae6231a8a5d8ccb03b5c0143e30082d2fe7 100644
|
| --- a/chrome/browser/chromeos/file_system_provider/operations/truncate.h
|
| +++ b/chrome/browser/chromeos/file_system_provider/operations/truncate.h
|
| @@ -7,9 +7,10 @@
|
|
|
| #include <stdint.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"
|
| @@ -42,10 +43,10 @@ class Truncate : 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:
|
|
|