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

Unified Diff: chrome/browser/chromeos/login/wizard_controller.cc

Issue 2853006: Added setting the locale on startup to the initial_locale attribute in... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 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/chromeos/login/wizard_controller.cc
===================================================================
--- chrome/browser/chromeos/login/wizard_controller.cc (revision 49913)
+++ chrome/browser/chromeos/login/wizard_controller.cc (working copy)
@@ -20,6 +20,7 @@
#include "chrome/browser/chromeos/login/account_screen.h"
#include "chrome/browser/chromeos/login/background_view.h"
#include "chrome/browser/chromeos/login/existing_user_controller.h"
+#include "chrome/browser/chromeos/login/language_switch_model.h"
#include "chrome/browser/chromeos/login/login_screen.h"
#include "chrome/browser/chromeos/login/login_utils.h"
#include "chrome/browser/chromeos/login/network_screen.h"
@@ -247,6 +248,14 @@
is_out_of_box_ = true;
}
+ // Switch to initial locale if specified by customization.
+ if (customization_ != NULL) {
+ std::string locale = customization_->initial_locale();
+ if (!locale.empty()) {
+ chromeos::LanguageSwitchModel::SwitchLanguage(locale);
+ }
+ }
+
ShowFirstScreen(first_screen_name);
// This keeps the window from flashing at startup.
« no previous file with comments | « chrome/browser/chromeos/login/language_switch_model.cc ('k') | chrome/browser/chromeos/testdata/startup_manifest.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698