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

Unified Diff: ios/chrome/browser/sync/sessions/ios_chrome_local_session_event_router.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/chrome/browser/sync/sessions/ios_chrome_local_session_event_router.h
diff --git a/ios/chrome/browser/sync/sessions/ios_chrome_local_session_event_router.h b/ios/chrome/browser/sync/sessions/ios_chrome_local_session_event_router.h
index 08b7e096a781e3abf6b57dd82fe8e9de0eca7170..74a61d653b2d86423c2dd5ad7a08b0a98b8a6842 100644
--- a/ios/chrome/browser/sync/sessions/ios_chrome_local_session_event_router.h
+++ b/ios/chrome/browser/sync/sessions/ios_chrome_local_session_event_router.h
@@ -72,11 +72,11 @@ class IOSChromeLocalSessionEventRouter
sync_sessions::SyncSessionsClient* const sessions_client_;
syncer::SyncableService::StartSyncFlare flare_;
- scoped_ptr<base::CallbackList<void(const std::set<GURL>&,
- const GURL&)>::Subscription>
+ std::unique_ptr<base::CallbackList<void(const std::set<GURL>&,
+ const GURL&)>::Subscription>
favicon_changed_subscription_;
- scoped_ptr<base::CallbackList<void(web::WebState*)>::Subscription>
+ std::unique_ptr<base::CallbackList<void(web::WebState*)>::Subscription>
tab_parented_subscription_;
DISALLOW_COPY_AND_ASSIGN(IOSChromeLocalSessionEventRouter);

Powered by Google App Engine
This is Rietveld 408576698