Index: chrome/browser/chromeos/file_system_provider/operations/get_actions.h |
diff --git a/chrome/browser/chromeos/file_system_provider/operations/get_actions.h b/chrome/browser/chromeos/file_system_provider/operations/get_actions.h |
index 384136ac768e0a794efd71fe2be5f0a4ae7b2148..a52d15619adfa331c505bac4d3a4cd120ebea1f4 100644 |
--- a/chrome/browser/chromeos/file_system_provider/operations/get_actions.h |
+++ b/chrome/browser/chromeos/file_system_provider/operations/get_actions.h |
@@ -5,11 +5,11 @@ |
#ifndef CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_OPERATIONS_GET_ACTIONS_H_ |
#define CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_OPERATIONS_GET_ACTIONS_H_ |
+#include <memory> |
#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" |
@@ -41,10 +41,10 @@ class GetActions : 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: |