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