Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1517)

Unified Diff: chrome/browser/chromeos/file_system_provider/operations/remove_watcher.cc

Issue 1870793002: Convert //chrome/browser/chromeos from scoped_ptr to std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/chromeos/file_system_provider/operations/remove_watcher.cc
diff --git a/chrome/browser/chromeos/file_system_provider/operations/remove_watcher.cc b/chrome/browser/chromeos/file_system_provider/operations/remove_watcher.cc
index be79404c6c708f9abb9a96d095047594fed7ec1f..fd0a795a539223986a4f5bde5ab915cf0bb930f9 100644
--- a/chrome/browser/chromeos/file_system_provider/operations/remove_watcher.cc
+++ b/chrome/browser/chromeos/file_system_provider/operations/remove_watcher.cc
@@ -47,13 +47,13 @@ bool RemoveWatcher::Execute(int request_id) {
}
void RemoveWatcher::OnSuccess(int /* request_id */,
- scoped_ptr<RequestValue> /* result */,
+ std::unique_ptr<RequestValue> /* result */,
bool has_more) {
callback_.Run(base::File::FILE_OK);
}
void RemoveWatcher::OnError(int /* request_id */,
- scoped_ptr<RequestValue> /* result */,
+ std::unique_ptr<RequestValue> /* result */,
base::File::Error error) {
callback_.Run(error);
}

Powered by Google App Engine
This is Rietveld 408576698