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

Unified Diff: chrome/browser/chromeos/login/language_switch_model.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/language_switch_model.cc
===================================================================
--- chrome/browser/chromeos/login/language_switch_model.cc (revision 49913)
+++ chrome/browser/chromeos/login/language_switch_model.cc (working copy)
@@ -81,6 +81,21 @@
gtk_widget_set_size_request(menu_->GetNativeMenu(), width, -1);
}
+// static
+void LanguageSwitchModel::SwitchLanguage(const std::string& locale) {
+ // Save new locale.
+ DCHECK(g_browser_process);
+ PrefService* prefs = g_browser_process->local_state();
+ prefs->SetString(prefs::kApplicationLocale, UTF8ToWide(locale));
+ prefs->SavePersistentPrefs();
+
+ // Switch the locale.
+ ResourceBundle::ReloadSharedInstance(UTF8ToWide(locale));
+
+ // The following line does not seem to affect locale anyhow. Maybe in future..
+ g_browser_process->SetApplicationLocale(locale);
+}
+
////////////////////////////////////////////////////////////////////////////////
// views::ViewMenuDelegate implementation.
@@ -116,22 +131,4 @@
views::Widget::NotifyLocaleChanged();
}
-////////////////////////////////////////////////////////////////////////////////
-// Private implementation.
-
-// static
-void LanguageSwitchModel::SwitchLanguage(const std::string& locale) {
- // Save new locale.
- DCHECK(g_browser_process);
- PrefService* prefs = g_browser_process->local_state();
- prefs->SetString(prefs::kApplicationLocale, UTF8ToWide(locale));
- prefs->SavePersistentPrefs();
-
- // Switch the locale.
- ResourceBundle::ReloadSharedInstance(UTF8ToWide(locale));
-
- // The following line does not seem to affect locale anyhow. Maybe in future..
- g_browser_process->SetApplicationLocale(locale);
-}
-
} // namespace chromeos
« no previous file with comments | « chrome/browser/chromeos/login/language_switch_model.h ('k') | chrome/browser/chromeos/login/wizard_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698