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

Unified Diff: chrome/browser/ui/webui/options/create_profile_handler.cc

Issue 350183002: Rename "managed (mode|user)" to "supervised user" (part 5) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 6 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/ui/webui/options/create_profile_handler.cc
diff --git a/chrome/browser/ui/webui/options/create_profile_handler.cc b/chrome/browser/ui/webui/options/create_profile_handler.cc
index 7f3b86e8b4ba04956d9b2370d78b3ec1c2f8292b..facc7f0054b23dbd8c8708035b146d20d17f8294 100644
--- a/chrome/browser/ui/webui/options/create_profile_handler.cc
+++ b/chrome/browser/ui/webui/options/create_profile_handler.cc
@@ -108,7 +108,7 @@ void CreateProfileHandler::CreateProfile(const base::ListValue* args) {
sync_service->QuerySyncStatusSummary();
if (status == ProfileSyncService::DATATYPES_NOT_INITIALIZED) {
ShowProfileCreationWarning(l10n_util::GetStringUTF16(
- IDS_PROFILES_CREATE_MANAGED_JUST_SIGNED_IN));
+ IDS_PROFILES_CREATE_SUPERVISED_JUST_SIGNED_IN));
}
}
}
@@ -369,19 +369,19 @@ base::string16 CreateProfileHandler::GetProfileCreationErrorMessage(
case SIGNIN_ERROR:
message_id =
profile_creation_type_ == SUPERVISED_PROFILE_IMPORT ?
- IDS_MANAGED_USER_IMPORT_SIGN_IN_ERROR :
+ IDS_SUPERVISED_USER_IMPORT_SIGN_IN_ERROR :
IDS_PROFILES_CREATE_SIGN_IN_ERROR;
break;
case REMOTE_ERROR:
message_id =
profile_creation_type_ == SUPERVISED_PROFILE_IMPORT ?
- IDS_MANAGED_USER_IMPORT_REMOTE_ERROR :
+ IDS_SUPERVISED_USER_IMPORT_REMOTE_ERROR :
IDS_PROFILES_CREATE_REMOTE_ERROR;
break;
case LOCAL_ERROR:
message_id =
profile_creation_type_ == SUPERVISED_PROFILE_IMPORT ?
- IDS_MANAGED_USER_IMPORT_LOCAL_ERROR :
+ IDS_SUPERVISED_USER_IMPORT_LOCAL_ERROR :
IDS_PROFILES_CREATE_LOCAL_ERROR;
break;
}
« no previous file with comments | « chrome/browser/ui/webui/options/browser_options_handler.cc ('k') | chrome/browser/ui/webui/options/manage_profile_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698