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

Unified Diff: chrome/browser/ui/webui/chromeos/login/supervised_user_creation_screen_handler.h

Issue 1454153002: Revert of This CL replaces e-mail with AccountId on user selection screen. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month 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/ui/webui/chromeos/login/supervised_user_creation_screen_handler.h
diff --git a/chrome/browser/ui/webui/chromeos/login/supervised_user_creation_screen_handler.h b/chrome/browser/ui/webui/chromeos/login/supervised_user_creation_screen_handler.h
index 3af31ea7b6ae4c62fc95acf1d5517e2b27f7cb37..4d9284be8221bcabfbb3aecf94d7031d3cdf379d 100644
--- a/chrome/browser/ui/webui/chromeos/login/supervised_user_creation_screen_handler.h
+++ b/chrome/browser/ui/webui/chromeos/login/supervised_user_creation_screen_handler.h
@@ -106,8 +106,8 @@
// WebUI message handlers.
void HandleCheckSupervisedUserName(const base::string16& name);
- void HandleManagerSelected(const AccountId& manager_id);
- void HandleImportUserSelected(const AccountId& account_id);
+ void HandleManagerSelected(const std::string& manager_id);
+ void HandleImportUserSelected(const std::string& user_id);
void HandleFinishLocalSupervisedUserCreation();
void HandleAbortLocalSupervisedUserCreation();
@@ -115,12 +115,12 @@
void HandleRetryLocalSupervisedUserCreation(const base::ListValue* args);
void HandleCurrentSupervisedUserPage(const std::string& current_page);
- void HandleAuthenticateManager(const AccountId& manager_account_id,
+ void HandleAuthenticateManager(const std::string& raw_manager_username,
const std::string& manager_password);
void HandleCreateSupervisedUser(const base::string16& new_raw_user_name,
const std::string& new_user_password);
- void HandleImportSupervisedUser(const AccountId& account_id);
- void HandleImportSupervisedUserWithPassword(const AccountId& account_id,
+ void HandleImportSupervisedUser(const std::string& user_id);
+ void HandleImportSupervisedUserWithPassword(const std::string& user_id,
const std::string& password);
void HandleGetImages();

Powered by Google App Engine
This is Rietveld 408576698