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 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
135 ONC_EXPORT extern const char kConnected[]; | 135 ONC_EXPORT extern const char kConnected[]; |
136 ONC_EXPORT extern const char kConnecting[]; | 136 ONC_EXPORT extern const char kConnecting[]; |
137 ONC_EXPORT extern const char kNotConnected[]; | 137 ONC_EXPORT extern const char kNotConnected[]; |
138 } // namespace connection_state | 138 } // namespace connection_state |
139 | 139 |
140 namespace ipconfig { | 140 namespace ipconfig { |
141 ONC_EXPORT extern const char kGateway[]; | 141 ONC_EXPORT extern const char kGateway[]; |
142 ONC_EXPORT extern const char kIPAddress[]; | 142 ONC_EXPORT extern const char kIPAddress[]; |
143 ONC_EXPORT extern const char kIPv4[]; | 143 ONC_EXPORT extern const char kIPv4[]; |
144 ONC_EXPORT extern const char kIPv6[]; | 144 ONC_EXPORT extern const char kIPv6[]; |
| 145 ONC_EXPORT extern const char kNameServers[]; |
145 ONC_EXPORT extern const char kRoutingPrefix[]; | 146 ONC_EXPORT extern const char kRoutingPrefix[]; |
146 ONC_EXPORT extern const char kType[]; | 147 ONC_EXPORT extern const char kType[]; |
147 } // namespace ipconfig | 148 } // namespace ipconfig |
148 | 149 |
149 namespace ethernet { | 150 namespace ethernet { |
150 ONC_EXPORT extern const char kAuthentication[]; | 151 ONC_EXPORT extern const char kAuthentication[]; |
151 ONC_EXPORT extern const char kEAP[]; | 152 ONC_EXPORT extern const char kEAP[]; |
152 ONC_EXPORT extern const char kNone[]; | 153 ONC_EXPORT extern const char kNone[]; |
153 ONC_EXPORT extern const char k8021X[]; | 154 ONC_EXPORT extern const char k8021X[]; |
154 } // namespace ethernet | 155 } // namespace ethernet |
(...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
334 ONC_EXPORT extern const char kWPAD[]; | 335 ONC_EXPORT extern const char kWPAD[]; |
335 } // namespace proxy | 336 } // namespace proxy |
336 | 337 |
337 namespace global_network_config { | 338 namespace global_network_config { |
338 ONC_EXPORT extern const char kAllowOnlyPolicyNetworksToAutoconnect[]; | 339 ONC_EXPORT extern const char kAllowOnlyPolicyNetworksToAutoconnect[]; |
339 } // global_network_config | 340 } // global_network_config |
340 | 341 |
341 } // namespace onc | 342 } // namespace onc |
342 | 343 |
343 #endif // COMPONENTS_ONC_ONC_CONSTANTS_H_ | 344 #endif // COMPONENTS_ONC_ONC_CONSTANTS_H_ |
OLD | NEW |