| 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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 ONC_EXPORT extern std::string WifiProperty(const std::string& property); | 77 ONC_EXPORT extern std::string WifiProperty(const std::string& property); |
| 78 | 78 |
| 79 } // namespace network_config | 79 } // namespace network_config |
| 80 | 80 |
| 81 namespace network_type { | 81 namespace network_type { |
| 82 ONC_EXPORT extern const char kAllTypes[]; | 82 ONC_EXPORT extern const char kAllTypes[]; |
| 83 ONC_EXPORT extern const char kCellular[]; | 83 ONC_EXPORT extern const char kCellular[]; |
| 84 ONC_EXPORT extern const char kEthernet[]; | 84 ONC_EXPORT extern const char kEthernet[]; |
| 85 ONC_EXPORT extern const char kVPN[]; | 85 ONC_EXPORT extern const char kVPN[]; |
| 86 ONC_EXPORT extern const char kWiFi[]; | 86 ONC_EXPORT extern const char kWiFi[]; |
| 87 ONC_EXPORT extern const char kWimax[]; |
| 88 ONC_EXPORT extern const char kWireless[]; |
| 87 } // namespace network_type | 89 } // namespace network_type |
| 88 | 90 |
| 89 namespace cellular { | 91 namespace cellular { |
| 90 ONC_EXPORT extern const char kActivateOverNonCellularNetwork[]; | 92 ONC_EXPORT extern const char kActivateOverNonCellularNetwork[]; |
| 91 ONC_EXPORT extern const char kActivationState[]; | 93 ONC_EXPORT extern const char kActivationState[]; |
| 92 ONC_EXPORT extern const char kAllowRoaming[]; | 94 ONC_EXPORT extern const char kAllowRoaming[]; |
| 93 ONC_EXPORT extern const char kAPN[]; | 95 ONC_EXPORT extern const char kAPN[]; |
| 94 ONC_EXPORT extern const char kAPNList[]; | 96 ONC_EXPORT extern const char kAPNList[]; |
| 95 ONC_EXPORT extern const char kCarrier[]; | 97 ONC_EXPORT extern const char kCarrier[]; |
| 96 ONC_EXPORT extern const char kESN[]; | 98 ONC_EXPORT extern const char kESN[]; |
| (...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 336 ONC_EXPORT extern const char kWPAD[]; | 338 ONC_EXPORT extern const char kWPAD[]; |
| 337 } // namespace proxy | 339 } // namespace proxy |
| 338 | 340 |
| 339 namespace global_network_config { | 341 namespace global_network_config { |
| 340 ONC_EXPORT extern const char kAllowOnlyPolicyNetworksToAutoconnect[]; | 342 ONC_EXPORT extern const char kAllowOnlyPolicyNetworksToAutoconnect[]; |
| 341 } // global_network_config | 343 } // global_network_config |
| 342 | 344 |
| 343 } // namespace onc | 345 } // namespace onc |
| 344 | 346 |
| 345 #endif // COMPONENTS_ONC_ONC_CONSTANTS_H_ | 347 #endif // COMPONENTS_ONC_ONC_CONSTANTS_H_ |
| OLD | NEW |