Index: chrome/browser/ui/ash/app_sync_ui_state.cc |
diff --git a/chrome/browser/ui/ash/app_sync_ui_state.cc b/chrome/browser/ui/ash/app_sync_ui_state.cc |
index 78bb2b3d1e59e27017d799ec838fdd38c05a2ea5..27d2d11a430d63091092207d682b408f3328e61a 100644 |
--- a/chrome/browser/ui/ash/app_sync_ui_state.cc |
+++ b/chrome/browser/ui/ash/app_sync_ui_state.cc |
@@ -16,7 +16,7 @@ |
#include "extensions/browser/extension_system.h" |
#if defined(OS_CHROMEOS) |
-#include "chrome/browser/chromeos/login/users/user_manager.h" |
+#include "components/user_manager/user_manager.h" |
#endif |
namespace { |
@@ -34,7 +34,7 @@ AppSyncUIState* AppSyncUIState::Get(Profile* profile) { |
// static |
bool AppSyncUIState::ShouldObserveAppSyncForProfile(Profile* profile) { |
#if defined(OS_CHROMEOS) |
- if (chromeos::UserManager::Get()->IsLoggedInAsGuest()) |
+ if (user_manager::UserManager::Get()->IsLoggedInAsGuest()) |
return false; |
if (!profile || profile->IsOffTheRecord()) |