Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 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_ENROLLMENT_CONFIG_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_POLICY_ENROLLMENT_CONFIG_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_POLICY_ENROLLMENT_CONFIG_H_ | 6 #define CHROME_BROWSER_CHROMEOS_POLICY_ENROLLMENT_CONFIG_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 namespace policy { | 10 namespace policy { |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 94 | 94 |
| 95 // The domain to enroll the device to, if applicable. If this is not set, the | 95 // The domain to enroll the device to, if applicable. If this is not set, the |
| 96 // device may be enrolled to any domain. Note that for the case where the | 96 // device may be enrolled to any domain. Note that for the case where the |
| 97 // device is not already locked to a certain domain, this value is used for | 97 // device is not already locked to a certain domain, this value is used for |
| 98 // display purposes only and the server makes the final decision on which | 98 // display purposes only and the server makes the final decision on which |
| 99 // domain the device should be enrolled with. If the device is already locked | 99 // domain the device should be enrolled with. If the device is already locked |
| 100 // to a domain, policy validation during enrollment will verify the domains | 100 // to a domain, policy validation during enrollment will verify the domains |
| 101 // match. | 101 // match. |
| 102 std::string management_domain; | 102 std::string management_domain; |
| 103 | 103 |
| 104 // The realm the device joined to (if managed by AD) | |
|
xiyuan
2016/10/26 22:03:16
nit: Add a "is" and end with "."
i.e.
The realm th
Roman Sorokin (ftl)
2016/10/27 13:10:45
Done.
| |
| 105 std::string management_realm; | |
| 106 | |
| 104 // The authentication mechanism to use. | 107 // The authentication mechanism to use. |
| 105 // TODO(drcrash): Change to best available once ZTE is everywhere. | 108 // TODO(drcrash): Change to best available once ZTE is everywhere. |
| 106 AuthMechanism auth_mechanism = AUTH_MECHANISM_INTERACTIVE; | 109 AuthMechanism auth_mechanism = AUTH_MECHANISM_INTERACTIVE; |
| 107 }; | 110 }; |
| 108 | 111 |
| 109 } // namespace policy | 112 } // namespace policy |
| 110 | 113 |
| 111 #endif // CHROME_BROWSER_CHROMEOS_POLICY_ENROLLMENT_CONFIG_H_ | 114 #endif // CHROME_BROWSER_CHROMEOS_POLICY_ENROLLMENT_CONFIG_H_ |
| OLD | NEW |