| 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 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 131 } // namespace cellular_apn | 131 } // namespace cellular_apn |
| 132 | 132 |
| 133 | 133 |
| 134 namespace connection_state { | 134 namespace connection_state { |
| 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 kDHCPv4[]; |
| 142 ONC_EXPORT extern const char kDHCPv6[]; |
| 141 ONC_EXPORT extern const char kGateway[]; | 143 ONC_EXPORT extern const char kGateway[]; |
| 142 ONC_EXPORT extern const char kIPAddress[]; | 144 ONC_EXPORT extern const char kIPAddress[]; |
| 143 ONC_EXPORT extern const char kIPv4[]; | 145 ONC_EXPORT extern const char kIPv4[]; |
| 144 ONC_EXPORT extern const char kIPv6[]; | 146 ONC_EXPORT extern const char kIPv6[]; |
| 145 ONC_EXPORT extern const char kNameServers[]; | 147 ONC_EXPORT extern const char kNameServers[]; |
| 146 ONC_EXPORT extern const char kRoutingPrefix[]; | 148 ONC_EXPORT extern const char kRoutingPrefix[]; |
| 147 ONC_EXPORT extern const char kType[]; | 149 ONC_EXPORT extern const char kType[]; |
| 148 } // namespace ipconfig | 150 } // namespace ipconfig |
| 149 | 151 |
| 150 namespace ethernet { | 152 namespace ethernet { |
| (...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 335 ONC_EXPORT extern const char kWPAD[]; | 337 ONC_EXPORT extern const char kWPAD[]; |
| 336 } // namespace proxy | 338 } // namespace proxy |
| 337 | 339 |
| 338 namespace global_network_config { | 340 namespace global_network_config { |
| 339 ONC_EXPORT extern const char kAllowOnlyPolicyNetworksToAutoconnect[]; | 341 ONC_EXPORT extern const char kAllowOnlyPolicyNetworksToAutoconnect[]; |
| 340 } // global_network_config | 342 } // global_network_config |
| 341 | 343 |
| 342 } // namespace onc | 344 } // namespace onc |
| 343 | 345 |
| 344 #endif // COMPONENTS_ONC_ONC_CONSTANTS_H_ | 346 #endif // COMPONENTS_ONC_ONC_CONSTANTS_H_ |
| OLD | NEW |