| OLD | NEW |
| (Empty) |
| 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. | |
| 4 | |
| 5 #include "components/user_manager/empty_user_info.h" | |
| 6 | |
| 7 #include "base/logging.h" | |
| 8 #include "base/strings/utf_string_conversions.h" | |
| 9 #include "components/signin/core/account_id/account_id.h" | |
| 10 | |
| 11 namespace user_manager { | |
| 12 | |
| 13 EmptyUserInfo::EmptyUserInfo() { | |
| 14 } | |
| 15 | |
| 16 EmptyUserInfo::~EmptyUserInfo() { | |
| 17 } | |
| 18 | |
| 19 base::string16 EmptyUserInfo::GetDisplayName() const { | |
| 20 NOTIMPLEMENTED(); | |
| 21 return base::string16(); | |
| 22 } | |
| 23 | |
| 24 base::string16 EmptyUserInfo::GetGivenName() const { | |
| 25 NOTIMPLEMENTED(); | |
| 26 return base::string16(); | |
| 27 } | |
| 28 | |
| 29 std::string EmptyUserInfo::GetEmail() const { | |
| 30 NOTIMPLEMENTED(); | |
| 31 return std::string(); | |
| 32 } | |
| 33 | |
| 34 const AccountId& EmptyUserInfo::GetAccountId() const { | |
| 35 NOTIMPLEMENTED(); | |
| 36 return EmptyAccountId(); | |
| 37 } | |
| 38 | |
| 39 const gfx::ImageSkia& EmptyUserInfo::GetImage() const { | |
| 40 NOTIMPLEMENTED(); | |
| 41 // To make the compiler happy. | |
| 42 return null_image_; | |
| 43 } | |
| 44 | |
| 45 } // namespace user_manager | |
| OLD | NEW |