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

Unified Diff: ios/web/public/web_thread.h

Issue 1861593005: Convert //ios from scoped_ptr to std::unique_ptr. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add header 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: ios/web/public/web_thread.h
diff --git a/ios/web/public/web_thread.h b/ios/web/public/web_thread.h
index 7c7195656d73e8fc30b3a04d724792af202447c8..09821a763fb68e4d7c7a39f23329fa1c9566379b 100644
--- a/ios/web/public/web_thread.h
+++ b/ios/web/public/web_thread.h
@@ -258,7 +258,7 @@ class WebThread {
// ~Foo();
//
// Sample usage with scoped_ptr:
noyau (Ping after 24h) 2016/04/07 13:34:05 s/scoped_ptr/std::unique_ptr/
- // scoped_ptr<Foo, web::WebThread::DeleteOnIOThread> ptr;
+ // std::unique_ptr<Foo, web::WebThread::DeleteOnIOThread> ptr;
struct DeleteOnUIThread : public DeleteOnThread<UI> {};
struct DeleteOnIOThread : public DeleteOnThread<IO> {};
struct DeleteOnFileThread : public DeleteOnThread<FILE> {};

Powered by Google App Engine
This is Rietveld 408576698