| // Copyright 2014 The Chromium Authors |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| #include "components/user_manager/user_info_impl.h" |
| #include "base/strings/utf_string_conversions.h" |
| #include "components/account_id/account_id.h" |
| #include "components/user_manager/user_names.h" |
| UserInfoImpl::UserInfoImpl() : account_id_(StubAccountId()) {} |
| UserInfoImpl::~UserInfoImpl() { |
| std::u16string UserInfoImpl::GetDisplayName() const { |
| std::u16string UserInfoImpl::GetGivenName() const { |
| std::string UserInfoImpl::GetDisplayEmail() const { |
| return account_id_.GetUserEmail(); // Migrated |
| const AccountId& UserInfoImpl::GetAccountId() const { |
| const gfx::ImageSkia& UserInfoImpl::GetImage() const { |
| } // namespace user_manager |