blob: 7f48169b087f58ff3de8e395c783fb0b96dd46f8 [file] [log] [blame]
// Copyright 2014 The Chromium Authors. All rights reserved.
// 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