blob: b6bceb09624c315503047c00d09750d9f4325da8 [file] [log] [blame]
James Cook295aaca2020-10-13 18:52:241// Copyright 2020 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 CHROME_BROWSER_METRICS_ENROLLMENT_STATUS_H_
6#define CHROME_BROWSER_METRICS_ENROLLMENT_STATUS_H_
7
8// Possible device enrollment status for a Chrome OS device. Used by both
9// ash-chrome and lacros-chrome.
10// Used by UMA histogram, so entries shouldn't be reordered or removed.
11enum class EnrollmentStatus {
12 kNonManaged = 0,
13 kUnused = 1, // Formerly MANAGED_EDU, see crbug.com/462770.
14 kManaged = 2,
15 kErrorGettingStatus = 3,
16 kMaxValue = kErrorGettingStatus,
17};
18
19#endif // CHROME_BROWSER_METRICS_ENROLLMENT_STATUS_H_