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 <string> | 7 #include <string> |
8 | 8 |
9 #include "components/onc/onc_export.h" | 9 #include "components/onc/onc_export.h" |
10 | 10 |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
55 ONC_EXPORT extern const char kUnencryptedConfiguration[]; | 55 ONC_EXPORT extern const char kUnencryptedConfiguration[]; |
56 } // namespace toplevel_config | 56 } // namespace toplevel_config |
57 | 57 |
58 // NetworkConfiguration. | 58 // NetworkConfiguration. |
59 namespace network_config { | 59 namespace network_config { |
60 ONC_EXPORT extern const char kCellular[]; | 60 ONC_EXPORT extern const char kCellular[]; |
61 ONC_EXPORT extern const char kDevice[]; | 61 ONC_EXPORT extern const char kDevice[]; |
62 ONC_EXPORT extern const char kEthernet[]; | 62 ONC_EXPORT extern const char kEthernet[]; |
63 ONC_EXPORT extern const char kGUID[]; | 63 ONC_EXPORT extern const char kGUID[]; |
64 ONC_EXPORT extern const char kIPConfigs[]; | 64 ONC_EXPORT extern const char kIPConfigs[]; |
| 65 ONC_EXPORT extern const char kSavedIPConfig[]; |
| 66 ONC_EXPORT extern const char kStaticIPConfig[]; |
65 ONC_EXPORT extern const char kMacAddress[]; | 67 ONC_EXPORT extern const char kMacAddress[]; |
66 ONC_EXPORT extern const char kName[]; | 68 ONC_EXPORT extern const char kName[]; |
67 ONC_EXPORT extern const char kNameServers[]; | 69 ONC_EXPORT extern const char kNameServers[]; |
68 ONC_EXPORT extern const char kPriority[]; | 70 ONC_EXPORT extern const char kPriority[]; |
69 ONC_EXPORT extern const char kProxySettings[]; | 71 ONC_EXPORT extern const char kProxySettings[]; |
70 ONC_EXPORT extern const char kSearchDomains[]; | 72 ONC_EXPORT extern const char kSearchDomains[]; |
71 ONC_EXPORT extern const char kConnectionState[]; | 73 ONC_EXPORT extern const char kConnectionState[]; |
72 ONC_EXPORT extern const char kRestricted[]; | 74 ONC_EXPORT extern const char kRestricted[]; |
73 ONC_EXPORT extern const char kConnectable[]; | 75 ONC_EXPORT extern const char kConnectable[]; |
74 ONC_EXPORT extern const char kErrorState[]; | 76 ONC_EXPORT extern const char kErrorState[]; |
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
169 } // namespace connection_state | 171 } // namespace connection_state |
170 | 172 |
171 namespace ipconfig { | 173 namespace ipconfig { |
172 ONC_EXPORT extern const char kGateway[]; | 174 ONC_EXPORT extern const char kGateway[]; |
173 ONC_EXPORT extern const char kIPAddress[]; | 175 ONC_EXPORT extern const char kIPAddress[]; |
174 ONC_EXPORT extern const char kIPv4[]; | 176 ONC_EXPORT extern const char kIPv4[]; |
175 ONC_EXPORT extern const char kIPv6[]; | 177 ONC_EXPORT extern const char kIPv6[]; |
176 ONC_EXPORT extern const char kNameServers[]; | 178 ONC_EXPORT extern const char kNameServers[]; |
177 ONC_EXPORT extern const char kRoutingPrefix[]; | 179 ONC_EXPORT extern const char kRoutingPrefix[]; |
178 ONC_EXPORT extern const char kType[]; | 180 ONC_EXPORT extern const char kType[]; |
| 181 ONC_EXPORT extern const char kWebProxyAutoDiscoveryUrl[]; |
179 } // namespace ipconfig | 182 } // namespace ipconfig |
180 | 183 |
181 namespace ethernet { | 184 namespace ethernet { |
182 ONC_EXPORT extern const char kAuthentication[]; | 185 ONC_EXPORT extern const char kAuthentication[]; |
183 ONC_EXPORT extern const char kAuthenticationNone[]; | 186 ONC_EXPORT extern const char kAuthenticationNone[]; |
184 ONC_EXPORT extern const char kEAP[]; | 187 ONC_EXPORT extern const char kEAP[]; |
185 ONC_EXPORT extern const char k8021X[]; | 188 ONC_EXPORT extern const char k8021X[]; |
186 } // namespace ethernet | 189 } // namespace ethernet |
187 | 190 |
188 namespace wifi { | 191 namespace wifi { |
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
367 ONC_EXPORT extern const char kWPAD[]; | 370 ONC_EXPORT extern const char kWPAD[]; |
368 } // namespace proxy | 371 } // namespace proxy |
369 | 372 |
370 namespace global_network_config { | 373 namespace global_network_config { |
371 ONC_EXPORT extern const char kAllowOnlyPolicyNetworksToAutoconnect[]; | 374 ONC_EXPORT extern const char kAllowOnlyPolicyNetworksToAutoconnect[]; |
372 } // global_network_config | 375 } // global_network_config |
373 | 376 |
374 } // namespace onc | 377 } // namespace onc |
375 | 378 |
376 #endif // COMPONENTS_ONC_ONC_CONSTANTS_H_ | 379 #endif // COMPONENTS_ONC_ONC_CONSTANTS_H_ |
OLD | NEW |