blob: c5c18c42c09bbf6b4b097778a76cb6c2237cdcea [file] [log] [blame]
// 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"
namespace user_manager {
UserInfoImpl::UserInfoImpl() : account_id_(StubAccountId()) {}
UserInfoImpl::~UserInfoImpl() {
}
std::u16string UserInfoImpl::GetDisplayName() const {
return u"stub-user";
}
std::u16string UserInfoImpl::GetGivenName() const {
return u"Stub";
}
std::string UserInfoImpl::GetDisplayEmail() const {
return account_id_.GetUserEmail(); // Migrated
}
const AccountId& UserInfoImpl::GetAccountId() const {
return account_id_;
}
const gfx::ImageSkia& UserInfoImpl::GetImage() const {
return user_image_;
}
} // namespace user_manager