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 // 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 kMacAddress[]; | 65 ONC_EXPORT extern const char kMacAddress[]; |
66 ONC_EXPORT extern const char kName[]; | 66 ONC_EXPORT extern const char kName[]; |
67 ONC_EXPORT extern const char kNameServers[]; | 67 ONC_EXPORT extern const char kNameServers[]; |
| 68 ONC_EXPORT extern const char kPriority[]; |
68 ONC_EXPORT extern const char kProxySettings[]; | 69 ONC_EXPORT extern const char kProxySettings[]; |
69 ONC_EXPORT extern const char kSearchDomains[]; | 70 ONC_EXPORT extern const char kSearchDomains[]; |
70 ONC_EXPORT extern const char kConnectionState[]; | 71 ONC_EXPORT extern const char kConnectionState[]; |
71 ONC_EXPORT extern const char kConnectable[]; | 72 ONC_EXPORT extern const char kConnectable[]; |
72 ONC_EXPORT extern const char kErrorState[]; | 73 ONC_EXPORT extern const char kErrorState[]; |
73 ONC_EXPORT extern const char kType[]; | 74 ONC_EXPORT extern const char kType[]; |
74 ONC_EXPORT extern const char kVPN[]; | 75 ONC_EXPORT extern const char kVPN[]; |
75 ONC_EXPORT extern const char kWiFi[]; | 76 ONC_EXPORT extern const char kWiFi[]; |
76 | 77 |
77 ONC_EXPORT extern std::string CellularProperty(const std::string& property); | 78 ONC_EXPORT extern std::string CellularProperty(const std::string& property); |
(...skipping 279 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
357 ONC_EXPORT extern const char kWPAD[]; | 358 ONC_EXPORT extern const char kWPAD[]; |
358 } // namespace proxy | 359 } // namespace proxy |
359 | 360 |
360 namespace global_network_config { | 361 namespace global_network_config { |
361 ONC_EXPORT extern const char kAllowOnlyPolicyNetworksToAutoconnect[]; | 362 ONC_EXPORT extern const char kAllowOnlyPolicyNetworksToAutoconnect[]; |
362 } // global_network_config | 363 } // global_network_config |
363 | 364 |
364 } // namespace onc | 365 } // namespace onc |
365 | 366 |
366 #endif // COMPONENTS_ONC_ONC_CONSTANTS_H_ | 367 #endif // COMPONENTS_ONC_ONC_CONSTANTS_H_ |
OLD | NEW |