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

Side by Side Diff: ash/session/user_info.h

Issue 253063002: CleanUp: Introduce UserInfo. Move session_state stuff to ash/session. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 months 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 | Annotate | Revision Log
OLDNEW
(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 #ifndef ASH_SESSION_USER_INFO_H_
6 #define ASH_SESSION_USER_INFO_H_
7
8 #include <string>
9
10 #include "ash/ash_export.h"
11 #include "base/strings/string16.h"
12
13 namespace gfx {
14 class ImageSkia;
15 }
16
17 namespace ash {
18
19 // A class that represents user related info.
20 class ASH_EXPORT UserInfo {
21 public:
22 virtual ~UserInfo() {}
23
24 // Gets the displayed name for the user.
Nikita (slow) 2014/04/29 13:59:27 nit: display name
oshima 2014/04/29 17:59:54 Done.
25 virtual base::string16 GetDisplayName() const = 0;
26
27 // Gets the given name of the user.
28 virtual base::string16 GetGivenName() const = 0;
29
30 // Gets the display email address for the user.
31 // The display email address might contains some periods in the email name
32 // as well as capitalized letters. For example: "Foo.Bar@mock.com".
33 virtual std::string GetEmail() const = 0;
34
35 // Gets the user id (sanitized email address) for the user.
36 // The function would return something like "foobar@mock.com".
37 virtual std::string GetID() const = 0;
Nikita (slow) 2014/04/29 13:59:27 nit: Please rename to GetUserId() to reflect the
oshima 2014/04/29 17:59:54 Done.
38
39 // Gets the avatar image for the user.
40 virtual const gfx::ImageSkia& GetImage() const = 0;
41 };
42
43 } // namespace ash
44
45 #endif // ASH_SESSION_USER_INFO_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698