Index: chrome/browser/profiles/profile_impl.cc |
diff --git a/chrome/browser/profiles/profile_impl.cc b/chrome/browser/profiles/profile_impl.cc |
index e84f79559a6ce1a137c72e99db0d41cac73144f7..d1d6325038360357c61fdb6385d17a7b458e472a 100644 |
--- a/chrome/browser/profiles/profile_impl.cc |
+++ b/chrome/browser/profiles/profile_impl.cc |
@@ -111,9 +111,9 @@ |
#if defined(OS_CHROMEOS) |
#include "chrome/browser/chromeos/locale_change_guard.h" |
-#include "chrome/browser/chromeos/login/users/user_manager.h" |
#include "chrome/browser/chromeos/preferences.h" |
#include "chrome/browser/chromeos/profiles/profile_helper.h" |
+#include "components/user_manager/user_manager.h" |
#endif |
#if defined(SPDY_PROXY_AUTH_ORIGIN) |
@@ -1263,7 +1263,7 @@ void ProfileImpl::ChangeAppLocale( |
if (via != APP_LOCALE_CHANGED_VIA_PUBLIC_SESSION_LOGIN) |
local_state->SetString(prefs::kApplicationLocale, new_locale); |
- if (chromeos::UserManager::Get()->GetOwnerEmail() == |
+ if (user_manager::UserManager::Get()->GetOwnerEmail() == |
chromeos::ProfileHelper::Get()->GetUserByProfile(this)->email()) |
local_state->SetString(prefs::kOwnerLocale, new_locale); |
} |