Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(143)

Side by Side Diff: components/user_manager/empty_user_info.cc

Issue 1455263002: Reland of This CL replaces e-mail with AccountId on user selection screen. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « components/user_manager/empty_user_info.h ('k') | components/user_manager/user.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "components/user_manager/empty_user_info.h" 5 #include "components/user_manager/empty_user_info.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "base/strings/utf_string_conversions.h" 8 #include "base/strings/utf_string_conversions.h"
9 #include "components/signin/core/account_id/account_id.h" 9 #include "components/signin/core/account_id/account_id.h"
10 10
(...skipping 13 matching lines...) Expand all
24 base::string16 EmptyUserInfo::GetGivenName() const { 24 base::string16 EmptyUserInfo::GetGivenName() const {
25 NOTIMPLEMENTED(); 25 NOTIMPLEMENTED();
26 return base::string16(); 26 return base::string16();
27 } 27 }
28 28
29 std::string EmptyUserInfo::GetEmail() const { 29 std::string EmptyUserInfo::GetEmail() const {
30 NOTIMPLEMENTED(); 30 NOTIMPLEMENTED();
31 return std::string(); 31 return std::string();
32 } 32 }
33 33
34 AccountId EmptyUserInfo::GetAccountId() const { 34 const AccountId& EmptyUserInfo::GetAccountId() const {
35 NOTIMPLEMENTED(); 35 NOTIMPLEMENTED();
36 return EmptyAccountId(); 36 return EmptyAccountId();
37 } 37 }
38 38
39 const gfx::ImageSkia& EmptyUserInfo::GetImage() const { 39 const gfx::ImageSkia& EmptyUserInfo::GetImage() const {
40 NOTIMPLEMENTED(); 40 NOTIMPLEMENTED();
41 // To make the compiler happy. 41 // To make the compiler happy.
42 return null_image_; 42 return null_image_;
43 } 43 }
44 44
45 } // namespace user_manager 45 } // namespace user_manager
OLDNEW
« no previous file with comments | « components/user_manager/empty_user_info.h ('k') | components/user_manager/user.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698