| 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();
|
|
|