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

Unified Diff: ios/chrome/browser/browser_state/off_the_record_chrome_browser_state_impl.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/browser_state/off_the_record_chrome_browser_state_impl.h
diff --git a/ios/chrome/browser/browser_state/off_the_record_chrome_browser_state_impl.h b/ios/chrome/browser/browser_state/off_the_record_chrome_browser_state_impl.h
index 6f0e8ce5fdfa0067718cfc6d5ac6a9eefd9fc482..75aecfe68152177534dbace24f7aaed2a4322ea1 100644
--- a/ios/chrome/browser/browser_state/off_the_record_chrome_browser_state_impl.h
+++ b/ios/chrome/browser/browser_state/off_the_record_chrome_browser_state_impl.h
@@ -57,8 +57,8 @@ class OffTheRecordChromeBrowserStateImpl : public ios::ChromeBrowserState {
// Weak pointer owned by |original_chrome_browser_state_|.
syncable_prefs::PrefServiceSyncable* prefs_;
- scoped_ptr<OffTheRecordChromeBrowserStateIOData::Handle> io_data_;
- scoped_ptr<PrefProxyConfigTracker> pref_proxy_config_tracker_;
+ std::unique_ptr<OffTheRecordChromeBrowserStateIOData::Handle> io_data_;
+ std::unique_ptr<PrefProxyConfigTracker> pref_proxy_config_tracker_;
DISALLOW_COPY_AND_ASSIGN(OffTheRecordChromeBrowserStateImpl);
};

Powered by Google App Engine
This is Rietveld 408576698