Index: chrome/browser/chromeos/file_system_provider/operations/open_file.cc |
diff --git a/chrome/browser/chromeos/file_system_provider/operations/open_file.cc b/chrome/browser/chromeos/file_system_provider/operations/open_file.cc |
index cd31633d8926c86e11acf7735ff889476ef77178..69497acd0a3ba121dc387b0847a907556ad64ec2 100644 |
--- a/chrome/browser/chromeos/file_system_provider/operations/open_file.cc |
+++ b/chrome/browser/chromeos/file_system_provider/operations/open_file.cc |
@@ -59,14 +59,14 @@ bool OpenFile::Execute(int request_id) { |
} |
void OpenFile::OnSuccess(int request_id, |
- scoped_ptr<RequestValue> result, |
+ std::unique_ptr<RequestValue> result, |
bool has_more) { |
// File handle is the same as request id of the OpenFile operation. |
callback_.Run(request_id, base::File::FILE_OK); |
} |
void OpenFile::OnError(int /* request_id */, |
- scoped_ptr<RequestValue> /* result */, |
+ std::unique_ptr<RequestValue> /* result */, |
base::File::Error error) { |
callback_.Run(0 /* file_handle */, error); |
} |