| 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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 ONC_EXPORT extern const char kGUID[]; | 62 ONC_EXPORT extern const char kGUID[]; |
| 63 ONC_EXPORT extern const char kIPConfigs[]; | 63 ONC_EXPORT extern const char kIPConfigs[]; |
| 64 ONC_EXPORT extern const char kSavedIPConfig[]; | 64 ONC_EXPORT extern const char kSavedIPConfig[]; |
| 65 ONC_EXPORT extern const char kStaticIPConfig[]; | 65 ONC_EXPORT extern const char kStaticIPConfig[]; |
| 66 ONC_EXPORT extern const char kMacAddress[]; | 66 ONC_EXPORT extern const char kMacAddress[]; |
| 67 ONC_EXPORT extern const char kName[]; | 67 ONC_EXPORT extern const char kName[]; |
| 68 ONC_EXPORT extern const char kNameServers[]; | 68 ONC_EXPORT extern const char kNameServers[]; |
| 69 ONC_EXPORT extern const char kPriority[]; | 69 ONC_EXPORT extern const char kPriority[]; |
| 70 ONC_EXPORT extern const char kProxySettings[]; | 70 ONC_EXPORT extern const char kProxySettings[]; |
| 71 ONC_EXPORT extern const char kSearchDomains[]; | 71 ONC_EXPORT extern const char kSearchDomains[]; |
| 72 ONC_EXPORT extern const char kSource[]; |
| 73 ONC_EXPORT extern const char kSourceDevice[]; |
| 74 ONC_EXPORT extern const char kSourceDevicePolicy[]; |
| 75 ONC_EXPORT extern const char kSourceNone[]; |
| 76 ONC_EXPORT extern const char kSourceUser[]; |
| 77 ONC_EXPORT extern const char kSourceUserPolicy[]; |
| 72 ONC_EXPORT extern const char kConnectionState[]; | 78 ONC_EXPORT extern const char kConnectionState[]; |
| 73 ONC_EXPORT extern const char kRestrictedConnectivity[]; | 79 ONC_EXPORT extern const char kRestrictedConnectivity[]; |
| 74 ONC_EXPORT extern const char kConnectable[]; | 80 ONC_EXPORT extern const char kConnectable[]; |
| 75 ONC_EXPORT extern const char kErrorState[]; | 81 ONC_EXPORT extern const char kErrorState[]; |
| 76 ONC_EXPORT extern const char kType[]; | 82 ONC_EXPORT extern const char kType[]; |
| 77 ONC_EXPORT extern const char kVPN[]; | 83 ONC_EXPORT extern const char kVPN[]; |
| 78 ONC_EXPORT extern const char kWiFi[]; | 84 ONC_EXPORT extern const char kWiFi[]; |
| 79 | 85 |
| 80 ONC_EXPORT extern std::string CellularProperty(const std::string& property); | 86 ONC_EXPORT extern std::string CellularProperty(const std::string& property); |
| 81 ONC_EXPORT extern std::string VpnProperty(const std::string& property); | 87 ONC_EXPORT extern std::string VpnProperty(const std::string& property); |
| (...skipping 287 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 369 ONC_EXPORT extern const char kWPAD[]; | 375 ONC_EXPORT extern const char kWPAD[]; |
| 370 } // namespace proxy | 376 } // namespace proxy |
| 371 | 377 |
| 372 namespace global_network_config { | 378 namespace global_network_config { |
| 373 ONC_EXPORT extern const char kAllowOnlyPolicyNetworksToAutoconnect[]; | 379 ONC_EXPORT extern const char kAllowOnlyPolicyNetworksToAutoconnect[]; |
| 374 } // global_network_config | 380 } // global_network_config |
| 375 | 381 |
| 376 } // namespace onc | 382 } // namespace onc |
| 377 | 383 |
| 378 #endif // COMPONENTS_ONC_ONC_CONSTANTS_H_ | 384 #endif // COMPONENTS_ONC_ONC_CONSTANTS_H_ |
| OLD | NEW |