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

Unified Diff: chrome/browser/chromeos/login/supervised/supervised_user_creation_screen.h

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/login/supervised/supervised_user_creation_screen.h
diff --git a/chrome/browser/chromeos/login/supervised/supervised_user_creation_screen.h b/chrome/browser/chromeos/login/supervised/supervised_user_creation_screen.h
index 227bc55b0a8d1582a5a5ae9d9227b2c310a5a08a..63780ea548873512028b31beaeb27345e4221b4c 100644
--- a/chrome/browser/chromeos/login/supervised/supervised_user_creation_screen.h
+++ b/chrome/browser/chromeos/login/supervised/supervised_user_creation_screen.h
@@ -127,8 +127,8 @@ class SupervisedUserCreationScreen
SupervisedUserCreationScreenHandler* actor_;
- scoped_ptr<SupervisedUserCreationController> controller_;
- scoped_ptr<base::DictionaryValue> existing_users_;
+ std::unique_ptr<SupervisedUserCreationController> controller_;
+ std::unique_ptr<base::DictionaryValue> existing_users_;
bool on_error_screen_;
bool manager_signin_in_progress_;
@@ -140,7 +140,7 @@ class SupervisedUserCreationScreen
bool apply_photo_after_decoding_;
int selected_image_;
- scoped_ptr<ErrorScreensHistogramHelper> histogram_helper_;
+ std::unique_ptr<ErrorScreensHistogramHelper> histogram_helper_;
base::WeakPtrFactory<SupervisedUserCreationScreen> weak_factory_;

Powered by Google App Engine
This is Rietveld 408576698