| Index: components/user_manager/user_info_impl.cc
|
| diff --git a/components/user_manager/user_info_impl.cc b/components/user_manager/user_info_impl.cc
|
| index cf6d2ad3306b39b55ae0e96027597ceebb3a5e34..6aa21a8adb71cf0d13822212cd78f55b3fb7542b 100644
|
| --- a/components/user_manager/user_info_impl.cc
|
| +++ b/components/user_manager/user_info_impl.cc
|
| @@ -6,7 +6,6 @@
|
|
|
| #include "base/logging.h"
|
| #include "base/strings/utf_string_conversions.h"
|
| -#include "components/signin/core/account_id/account_id.h"
|
|
|
| namespace user_manager {
|
|
|
| @@ -28,8 +27,8 @@
|
| return "stub-user@domain.com";
|
| }
|
|
|
| -AccountId UserInfoImpl::GetAccountId() const {
|
| - return AccountId::FromUserEmail(GetEmail());
|
| +std::string UserInfoImpl::GetUserID() const {
|
| + return GetEmail();
|
| }
|
|
|
| const gfx::ImageSkia& UserInfoImpl::GetImage() const {
|
|
|