OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 #ifndef COMPONENTS_ONC_ONC_CONSTANTS_H_ | 4 #ifndef COMPONENTS_ONC_ONC_CONSTANTS_H_ |
5 #define COMPONENTS_ONC_ONC_CONSTANTS_H_ | 5 #define COMPONENTS_ONC_ONC_CONSTANTS_H_ |
6 | 6 |
7 #include "components/onc/onc_export.h" | 7 #include "components/onc/onc_export.h" |
8 | 8 |
9 // Constants for ONC properties. | 9 // Constants for ONC properties. |
10 namespace onc { | 10 namespace onc { |
(...skipping 30 matching lines...) Expand all Loading... |
41 | 41 |
42 // Common keys/values. | 42 // Common keys/values. |
43 ONC_EXPORT extern const char kRecommended[]; | 43 ONC_EXPORT extern const char kRecommended[]; |
44 ONC_EXPORT extern const char kRemove[]; | 44 ONC_EXPORT extern const char kRemove[]; |
45 | 45 |
46 // Top Level Configuration | 46 // Top Level Configuration |
47 namespace toplevel_config { | 47 namespace toplevel_config { |
48 ONC_EXPORT extern const char kCertificates[]; | 48 ONC_EXPORT extern const char kCertificates[]; |
49 ONC_EXPORT extern const char kEncryptedConfiguration[]; | 49 ONC_EXPORT extern const char kEncryptedConfiguration[]; |
50 ONC_EXPORT extern const char kNetworkConfigurations[]; | 50 ONC_EXPORT extern const char kNetworkConfigurations[]; |
| 51 ONC_EXPORT extern const char kGlobalNetworkConfiguration[]; |
51 ONC_EXPORT extern const char kType[]; | 52 ONC_EXPORT extern const char kType[]; |
52 ONC_EXPORT extern const char kUnencryptedConfiguration[]; | 53 ONC_EXPORT extern const char kUnencryptedConfiguration[]; |
53 } // namespace toplevel_config | 54 } // namespace toplevel_config |
54 | 55 |
55 // NetworkConfiguration. | 56 // NetworkConfiguration. |
56 namespace network_config { | 57 namespace network_config { |
57 ONC_EXPORT extern const char kCellular[]; | 58 ONC_EXPORT extern const char kCellular[]; |
58 ONC_EXPORT extern const char kEthernet[]; | 59 ONC_EXPORT extern const char kEthernet[]; |
59 ONC_EXPORT extern const char kGUID[]; | 60 ONC_EXPORT extern const char kGUID[]; |
60 ONC_EXPORT extern const char kIPConfigs[]; | 61 ONC_EXPORT extern const char kIPConfigs[]; |
(...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
302 ONC_EXPORT extern const char kHttp[]; | 303 ONC_EXPORT extern const char kHttp[]; |
303 ONC_EXPORT extern const char kHttps[]; | 304 ONC_EXPORT extern const char kHttps[]; |
304 ONC_EXPORT extern const char kManual[]; | 305 ONC_EXPORT extern const char kManual[]; |
305 ONC_EXPORT extern const char kPAC[]; | 306 ONC_EXPORT extern const char kPAC[]; |
306 ONC_EXPORT extern const char kPort[]; | 307 ONC_EXPORT extern const char kPort[]; |
307 ONC_EXPORT extern const char kSocks[]; | 308 ONC_EXPORT extern const char kSocks[]; |
308 ONC_EXPORT extern const char kType[]; | 309 ONC_EXPORT extern const char kType[]; |
309 ONC_EXPORT extern const char kWPAD[]; | 310 ONC_EXPORT extern const char kWPAD[]; |
310 } // namespace proxy | 311 } // namespace proxy |
311 | 312 |
| 313 namespace global_network_config { |
| 314 ONC_EXPORT extern const char kAllowOnlyPolicyNetworksToAutoconnect[]; |
| 315 } // global_network_config |
| 316 |
312 } // namespace onc | 317 } // namespace onc |
313 | 318 |
314 #endif // COMPONENTS_ONC_ONC_CONSTANTS_H_ | 319 #endif // COMPONENTS_ONC_ONC_CONSTANTS_H_ |
315 | 320 |
OLD | NEW |