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

Side by Side Diff: components/user_manager/user_info.h

Issue 1425093004: Revert of This CL replaces user_manager::UserID with AccountId. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@468875--Chrome-OS-handles-deletion-of-Gmail-account-poorly--Create-AccountID-structure-part2--user_names
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/user_id.h ('k') | components/user_manager/user_info_impl.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 #ifndef COMPONENTS_USER_MANAGER_USER_INFO_H_ 5 #ifndef COMPONENTS_USER_MANAGER_USER_INFO_H_
6 #define COMPONENTS_USER_MANAGER_USER_INFO_H_ 6 #define COMPONENTS_USER_MANAGER_USER_INFO_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/strings/string16.h" 10 #include "base/strings/string16.h"
11 #include "components/user_manager/user_id.h"
11 #include "components/user_manager/user_manager_export.h" 12 #include "components/user_manager/user_manager_export.h"
12 13
13 class AccountId;
14
15 namespace gfx { 14 namespace gfx {
16 class ImageSkia; 15 class ImageSkia;
17 } 16 }
18 17
19 namespace user_manager { 18 namespace user_manager {
20 19
21 // A class that represents user related info. 20 // A class that represents user related info.
22 class USER_MANAGER_EXPORT UserInfo { 21 class USER_MANAGER_EXPORT UserInfo {
23 public: 22 public:
24 UserInfo(); 23 UserInfo();
25 virtual ~UserInfo(); 24 virtual ~UserInfo();
26 25
27 // Gets the display name for the user. 26 // Gets the display name for the user.
28 virtual base::string16 GetDisplayName() const = 0; 27 virtual base::string16 GetDisplayName() const = 0;
29 28
30 // Gets the given name of the user. 29 // Gets the given name of the user.
31 virtual base::string16 GetGivenName() const = 0; 30 virtual base::string16 GetGivenName() const = 0;
32 31
33 // Gets the display email address for the user. 32 // Gets the display email address for the user.
34 // The display email address might contains some periods in the email name 33 // The display email address might contains some periods in the email name
35 // as well as capitalized letters. For example: "Foo.Bar@mock.com". 34 // as well as capitalized letters. For example: "Foo.Bar@mock.com".
36 virtual std::string GetEmail() const = 0; 35 virtual std::string GetEmail() const = 0;
37 36
38 // Returns AccountId for the user. 37 // Gets the user id (sanitized email address) for the user.
39 virtual AccountId GetAccountId() const = 0; 38 // The function would return something like "foobar@mock.com".
39 virtual UserID GetUserID() const = 0;
40 40
41 // Gets the avatar image for the user. 41 // Gets the avatar image for the user.
42 virtual const gfx::ImageSkia& GetImage() const = 0; 42 virtual const gfx::ImageSkia& GetImage() const = 0;
43 }; 43 };
44 44
45 } // namespace user_manager 45 } // namespace user_manager
46 46
47 #endif // COMPONENTS_USER_MANAGER_USER_INFO_H_ 47 #endif // COMPONENTS_USER_MANAGER_USER_INFO_H_
OLDNEW
« no previous file with comments | « components/user_manager/user_id.h ('k') | components/user_manager/user_info_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698