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

Side by Side Diff: ash/system/user/login_status.h

Issue 9580024: ash uber tray: Allow customizing each item depending on whether the user is logged in or not. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: missing file Created 8 years, 9 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
« no previous file with comments | « ash/system/tray_user.cc ('k') | ash/system/user/tray_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
(Empty)
1 // Copyright (c) 2012 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_SYSTEM_USER_LOGIN_STATUS_H_
6 #define ASH_SYSTEM_USER_LOGIN_STATUS_H_
7
8 namespace ash {
9 namespace user {
10
11 enum LoginStatus {
12 LOGGED_IN_USER, // A normal user is logged in.
13 LOGGED_IN_OWNER, // The owner of the device is logged in.
14 LOGGED_IN_GUEST, // A guest is logged in (i.e. incognito)
15 LOGGED_IN_NONE, // Not logged in.
16 };
17
18 } // namespace user
19 } // namespace ash
20
21 #endif // ASH_SYSTEM_USER_LOGIN_STATUS_H_
OLDNEW
« no previous file with comments | « ash/system/tray_user.cc ('k') | ash/system/user/tray_user.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698