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 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
101 ONC_EXPORT extern const char kWimax[]; | 101 ONC_EXPORT extern const char kWimax[]; |
102 // Patterns matching multiple types, not part of the ONC spec. | 102 // Patterns matching multiple types, not part of the ONC spec. |
103 ONC_EXPORT extern const char kAllTypes[]; | 103 ONC_EXPORT extern const char kAllTypes[]; |
104 ONC_EXPORT extern const char kWireless[]; | 104 ONC_EXPORT extern const char kWireless[]; |
105 } // namespace network_type | 105 } // namespace network_type |
106 | 106 |
107 namespace cellular { | 107 namespace cellular { |
108 ONC_EXPORT extern const char kActivationState[]; | 108 ONC_EXPORT extern const char kActivationState[]; |
109 ONC_EXPORT extern const char kActivated[]; | 109 ONC_EXPORT extern const char kActivated[]; |
110 ONC_EXPORT extern const char kActivating[]; | 110 ONC_EXPORT extern const char kActivating[]; |
| 111 ONC_EXPORT extern const char kAutoConnect[]; |
111 ONC_EXPORT extern const char kNotActivated[]; | 112 ONC_EXPORT extern const char kNotActivated[]; |
112 ONC_EXPORT extern const char kPartiallyActivated[]; | 113 ONC_EXPORT extern const char kPartiallyActivated[]; |
113 ONC_EXPORT extern const char kActivationType[]; | 114 ONC_EXPORT extern const char kActivationType[]; |
114 ONC_EXPORT extern const char kAllowRoaming[]; | 115 ONC_EXPORT extern const char kAllowRoaming[]; |
115 ONC_EXPORT extern const char kAPN[]; | 116 ONC_EXPORT extern const char kAPN[]; |
116 ONC_EXPORT extern const char kAPNList[]; | 117 ONC_EXPORT extern const char kAPNList[]; |
117 ONC_EXPORT extern const char kCarrier[]; | 118 ONC_EXPORT extern const char kCarrier[]; |
118 ONC_EXPORT extern const char kESN[]; | 119 ONC_EXPORT extern const char kESN[]; |
119 ONC_EXPORT extern const char kFamily[]; | 120 ONC_EXPORT extern const char kFamily[]; |
120 ONC_EXPORT extern const char kFirmwareRevision[]; | 121 ONC_EXPORT extern const char kFirmwareRevision[]; |
(...skipping 291 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
412 ONC_EXPORT extern const char kWPAD[]; | 413 ONC_EXPORT extern const char kWPAD[]; |
413 } // namespace proxy | 414 } // namespace proxy |
414 | 415 |
415 namespace global_network_config { | 416 namespace global_network_config { |
416 ONC_EXPORT extern const char kAllowOnlyPolicyNetworksToAutoconnect[]; | 417 ONC_EXPORT extern const char kAllowOnlyPolicyNetworksToAutoconnect[]; |
417 } // global_network_config | 418 } // global_network_config |
418 | 419 |
419 } // namespace onc | 420 } // namespace onc |
420 | 421 |
421 #endif // COMPONENTS_ONC_ONC_CONSTANTS_H_ | 422 #endif // COMPONENTS_ONC_ONC_CONSTANTS_H_ |
OLD | NEW |