Roll src/third_party/skia f2539d5:070e010
[chromium-blink-merge.git] / components / user_manager / user_info.h
blobcc613c188eb1b5ce25215e73532a99cbd51f95e0
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 #ifndef COMPONENTS_USER_MANAGER_USER_INFO_H_
6 #define COMPONENTS_USER_MANAGER_USER_INFO_H_
8 #include <string>
10 #include "base/strings/string16.h"
11 #include "components/user_manager/user_id.h"
12 #include "components/user_manager/user_manager_export.h"
14 namespace gfx {
15 class ImageSkia;
18 namespace user_manager {
20 // A class that represents user related info.
21 class USER_MANAGER_EXPORT UserInfo {
22 public:
23 UserInfo();
24 virtual ~UserInfo();
26 // Gets the display name for the user.
27 virtual base::string16 GetDisplayName() const = 0;
29 // Gets the given name of the user.
30 virtual base::string16 GetGivenName() const = 0;
32 // Gets the display email address for the user.
33 // The display email address might contains some periods in the email name
34 // as well as capitalized letters. For example: "Foo.Bar@mock.com".
35 virtual std::string GetEmail() const = 0;
37 // Gets the user id (sanitized email address) for the user.
38 // The function would return something like "foobar@mock.com".
39 virtual UserID GetUserID() const = 0;
41 // Gets the avatar image for the user.
42 virtual const gfx::ImageSkia& GetImage() const = 0;
45 } // namespace user_manager
47 #endif // COMPONENTS_USER_MANAGER_USER_INFO_H_