| Index: chrome/browser/chromeos/policy/user_cloud_policy_manager_chromeos.cc
|
| diff --git a/chrome/browser/chromeos/policy/user_cloud_policy_manager_chromeos.cc b/chrome/browser/chromeos/policy/user_cloud_policy_manager_chromeos.cc
|
| index f7c8d54b5a492b7835732b5fd83045001f600058..1dc5111a831da02dbb6aa0803d86b10b3bb914a5 100644
|
| --- a/chrome/browser/chromeos/policy/user_cloud_policy_manager_chromeos.cc
|
| +++ b/chrome/browser/chromeos/policy/user_cloud_policy_manager_chromeos.cc
|
| @@ -25,6 +25,7 @@
|
| #include "components/policy/core/common/policy_map.h"
|
| #include "components/policy/core/common/policy_pref_names.h"
|
| #include "components/policy/core/common/policy_types.h"
|
| +#include "components/user_manager/user_manager.h"
|
| #include "net/url_request/url_request_context_getter.h"
|
| #include "policy/policy_constants.h"
|
| #include "url/gurl.h"
|
| @@ -63,7 +64,7 @@ void OnWildcardCheckCompleted(const std::string& username,
|
| // logged-in session is not possible. Fix this either by delaying the
|
| // cryptohome deletion operation or by getting rid of the in-session
|
| // wildcard check.
|
| - chromeos::UserManager::Get()->RemoveUserFromList(username);
|
| + user_manager::UserManager::Get()->RemoveUserFromList(username);
|
| chrome::AttemptUserExit();
|
| }
|
| }
|
|
|