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

Unified Diff: chrome/browser/ui/webui/chromeos/login/eula_screen_handler.cc

Issue 7058048: [cros] Layout for OOBE WebUI. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix Created 9 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/chromeos/login/eula_screen_handler.cc
diff --git a/chrome/browser/ui/webui/chromeos/login/eula_screen_handler.cc b/chrome/browser/ui/webui/chromeos/login/eula_screen_handler.cc
index e6faf4543fbda52e7fc1c1c7cbcabd3025f46718..ae4ebd99b3dcee952ce6b02d095cceb12f8d8b8e 100644
--- a/chrome/browser/ui/webui/chromeos/login/eula_screen_handler.cc
+++ b/chrome/browser/ui/webui/chromeos/login/eula_screen_handler.cc
@@ -36,16 +36,17 @@ void EulaScreenHandler::SetDelegate(Delegate* delegate) {
void EulaScreenHandler::GetLocalizedSettings(
DictionaryValue* localized_strings) {
localized_strings->SetString("eulaScreenTitle",
- l10n_util::GetStringFUTF16(IDS_EULA_SCREEN_TITLE,
- l10n_util::GetStringUTF16(IDS_SHORT_PRODUCT_NAME)));
- localized_strings->SetString("acceptAgreement",
- l10n_util::GetStringUTF16(IDS_EULA_ACCEPT_AND_CONTINUE_BUTTON));
- localized_strings->SetString("back",
- l10n_util::GetStringUTF16(IDS_EULA_BACK_BUTTON));
+ l10n_util::GetStringUTF16(IDS_EULA_SCREEN_TITLE));
localized_strings->SetString("checkboxLogging",
l10n_util::GetStringUTF16(IDS_EULA_CHECKBOX_ENABLE_LOGGING));
localized_strings->SetString("learnMore",
- l10n_util::GetStringUTF16(IDS_LEARN_MORE));
+ l10n_util::GetStringUTF16(IDS_LEARN_MORE));
+ localized_strings->SetString("tpmSetting",
+ l10n_util::GetStringUTF16(IDS_EULA_SYSTEM_SECURITY_SETTING));
+ localized_strings->SetString("back",
+ l10n_util::GetStringUTF16(IDS_EULA_BACK_BUTTON));
+ localized_strings->SetString("acceptAgreement",
+ l10n_util::GetStringUTF16(IDS_EULA_ACCEPT_AND_CONTINUE_BUTTON));
}
void EulaScreenHandler::Initialize() {

Powered by Google App Engine
This is Rietveld 408576698