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

Unified 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, 8 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 side-by-side diff with in-line comments
Download patch
Index: ash/session/user_info.h
diff --git a/ash/session/user_info.h b/ash/session/user_info.h
new file mode 100644
index 0000000000000000000000000000000000000000..cc2e07dddc05f9ef868b7f283ff72296311a4547
--- /dev/null
+++ b/ash/session/user_info.h
@@ -0,0 +1,45 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef ASH_SESSION_USER_INFO_H_
+#define ASH_SESSION_USER_INFO_H_
+
+#include <string>
+
+#include "ash/ash_export.h"
+#include "base/strings/string16.h"
+
+namespace gfx {
+class ImageSkia;
+}
+
+namespace ash {
+
+// A class that represents user related info.
+class ASH_EXPORT UserInfo {
+ public:
+ virtual ~UserInfo() {}
+
+ // 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.
+ virtual base::string16 GetDisplayName() const = 0;
+
+ // Gets the given name of the user.
+ virtual base::string16 GetGivenName() const = 0;
+
+ // Gets the display email address for the user.
+ // The display email address might contains some periods in the email name
+ // as well as capitalized letters. For example: "Foo.Bar@mock.com".
+ virtual std::string GetEmail() const = 0;
+
+ // Gets the user id (sanitized email address) for the user.
+ // The function would return something like "foobar@mock.com".
+ 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.
+
+ // Gets the avatar image for the user.
+ virtual const gfx::ImageSkia& GetImage() const = 0;
+};
+
+} // namespace ash
+
+#endif // ASH_SESSION_USER_INFO_H_

Powered by Google App Engine
This is Rietveld 408576698