[go: nahoru, domu]

blob: aa7632401407cafd1f8deda13bef2566f32e87f9 [file] [log] [blame]
// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef ASH_LOGIN_STATUS_H_
#define ASH_LOGIN_STATUS_H_
namespace ash {
enum class LoginStatus {
NOT_LOGGED_IN, // Not logged in
LOCKED, // A user has locked the screen
USER, // A regular user is logged in
GUEST, // A guest is logged in (i.e. incognito)
PUBLIC, // A public account is logged in
CHILD, // A Family Link user is logged in
KIOSK_APP // In kiosk mode for Chrome app, ARC, or PWA.
};
} // namespace ash
#endif // ASH_LOGIN_STATUS_H_