1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "components/user_manager/empty_user_info.h"
7 #include "base/logging.h"
8 #include "base/strings/utf_string_conversions.h"
10 namespace user_manager
{
12 EmptyUserInfo::EmptyUserInfo() {
15 EmptyUserInfo::~EmptyUserInfo() {
18 base::string16
EmptyUserInfo::GetDisplayName() const {
20 return base::string16();
23 base::string16
EmptyUserInfo::GetGivenName() const {
25 return base::string16();
28 std::string
EmptyUserInfo::GetEmail() const {
33 std::string
EmptyUserInfo::GetUserID() const {
38 const gfx::ImageSkia
& EmptyUserInfo::GetImage() const {
40 // To make the compiler happy.
44 } // namespace user_manager