OLD | NEW |
---|---|
1 // Copyright (c) 2014 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_BROWSER_CHROMEOS_POLICY_SERVER_BACKED_DEVICE_STATE_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_POLICY_SERVER_BACKED_DEVICE_STATE_H_ |
6 #define CHROME_BROWSER_CHROMEOS_POLICY_SERVER_BACKED_DEVICE_STATE_H_ | 6 #define CHROME_BROWSER_CHROMEOS_POLICY_SERVER_BACKED_DEVICE_STATE_H_ |
7 | 7 |
8 namespace policy { | 8 namespace policy { |
9 | 9 |
10 // Dictionary key constants for prefs::kServerBackedDeviceState. | 10 // Dictionary key constants for prefs::kServerBackedDeviceState. |
11 extern const char kDeviceStateManagementDomain[]; | 11 extern const char kDeviceStateManagementDomain[]; |
12 extern const char kDeviceStateRestoreMode[]; | 12 extern const char kDeviceStateRestoreMode[]; |
13 extern const char kDeviceStateDisabled[]; | |
14 extern const char kDeviceStateDisabledMessage[]; | 13 extern const char kDeviceStateDisabledMessage[]; |
15 | 14 |
16 // Values for kDeviceStateRestoreMode. | 15 // Values for kDeviceStateRestoreMode. |
17 extern const char kDeviceStateRestoreModeReEnrollmentEnforced[]; | 16 extern const char kDeviceStateRestoreModeReEnrollmentEnforced[]; |
18 extern const char kDeviceStateRestoreModeReEnrollmentRequested[]; | 17 extern const char kDeviceStateRestoreModeReEnrollmentRequested[]; |
18 extern const char kDeviceStateRestoreModeDisabled[]; | |
Mattias Nissler (ping if slow)
2014/10/29 17:41:35
Are we positive behavior will be identical for bot
bartfab (slow)
2014/10/30 14:10:32
Yes, we are positive on that. The UI designers are
| |
19 | 19 |
20 } // namespace policy | 20 } // namespace policy |
21 | 21 |
22 #endif // CHROME_BROWSER_CHROMEOS_POLICY_SERVER_BACKED_DEVICE_STATE_H_ | 22 #endif // CHROME_BROWSER_CHROMEOS_POLICY_SERVER_BACKED_DEVICE_STATE_H_ |
OLD | NEW |