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

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

Issue 3579011: Chrome OS: make language per user. (Closed)
Patch Set: mend Created 10 years, 1 month 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/login_utils.cc
diff --git a/chrome/browser/chromeos/login/login_utils.cc b/chrome/browser/chromeos/login/login_utils.cc
index 8d45a00f1668dc361b5571d16ff9ce5e6ac97e39..ef6aa2f3aee409318e018bb5f5470c7ab748c0e5 100644
--- a/chrome/browser/chromeos/login/login_utils.cc
+++ b/chrome/browser/chromeos/login/login_utils.cc
@@ -27,6 +27,7 @@
#include "chrome/browser/chromeos/input_method/input_method_util.h"
#include "chrome/browser/chromeos/login/cookie_fetcher.h"
#include "chrome/browser/chromeos/login/google_authenticator.h"
+#include "chrome/browser/chromeos/login/language_switch_menu.h"
#include "chrome/browser/chromeos/login/ownership_service.h"
#include "chrome/browser/chromeos/login/parallel_authenticator.h"
#include "chrome/browser/chromeos/login/user_image_downloader.h"
@@ -54,9 +55,8 @@ namespace chromeos {
namespace {
-// Prefix for Auth token received from ClientLogin request.
+// Affixes for Auth token received from ClientLogin request.
const char kAuthPrefix[] = "Auth=";
-// Suffix for Auth token received from ClientLogin request.
const char kAuthSuffix[] = "\n";
// Increase logging level for Guest mode to avoid LOG(INFO) messages in logs.
@@ -99,6 +99,9 @@ class LoginUtilsImpl : public LoginUtils {
virtual void PrewarmAuthentication();
private:
+ // Check user's profile for kApplicationLocale setting.
+ void RespectLocalePreference(PrefService* pref);
+
// Indicates if DoBrowserLaunch will actually launch the browser or not.
bool browser_launch_enabled_;
@@ -211,6 +214,8 @@ void LoginUtilsImpl::CompleteLogin(
}
btl->AddLoginTimeMarker("TPMOwned", false);
+ RespectLocalePreference(profile->GetPrefs());
+
static const char kFallbackInputMethodLocale[] = "en-US";
if (first_login) {
std::string locale(g_browser_process->GetApplicationLocale());
@@ -258,6 +263,19 @@ void LoginUtilsImpl::CompleteLogin(
DoBrowserLaunch(profile);
}
+void LoginUtilsImpl::RespectLocalePreference(PrefService* pref) {
+ std::string pref_locale = pref->GetString(prefs::kApplicationLocale);
+ if (pref_locale.empty()) {
+ // TODO(dilmah): current code will clobber existing setting in case
+ // language preference was set via another device
+ // but still not synced yet.
Nikita (slow) 2010/11/15 07:54:41 That would be always the case because profile is n
Denis Lagno 2010/11/15 11:50:05 Done.
+ pref->SetString(prefs::kApplicationLocale,
+ g_browser_process->GetApplicationLocale());
+ } else {
+ LanguageSwitchMenu::SwitchLanguage(pref_locale);
+ }
+}
+
void LoginUtilsImpl::CompleteOffTheRecordLogin(const GURL& start_url) {
VLOG(1) << "Completing off the record login";

Powered by Google App Engine
This is Rietveld 408576698