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 | 4 |
5 #include "components/onc/onc_constants.h" | 5 #include "components/onc/onc_constants.h" |
6 | 6 |
7 // Constants for ONC properties. | 7 // Constants for ONC properties. |
8 namespace onc { | 8 namespace onc { |
9 | 9 |
10 const char kAugmentationActiveSetting[] = "Active"; | 10 const char kAugmentationActiveSetting[] = "Active"; |
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
117 const char kRoamingHome[] = "Home"; | 117 const char kRoamingHome[] = "Home"; |
118 const char kRoamingRequired[] = "Required"; | 118 const char kRoamingRequired[] = "Required"; |
119 const char kRoamingRoaming[] = "Roaming"; | 119 const char kRoamingRoaming[] = "Roaming"; |
120 const char kRoamingState[] = "RoamingState"; | 120 const char kRoamingState[] = "RoamingState"; |
121 const char kServingOperator[] = "ServingOperator"; | 121 const char kServingOperator[] = "ServingOperator"; |
122 const char kSignalStrength[] = "SignalStrength"; | 122 const char kSignalStrength[] = "SignalStrength"; |
123 const char kSIMLockStatus[] = "SIMLockStatus"; | 123 const char kSIMLockStatus[] = "SIMLockStatus"; |
124 const char kSIMPresent[] = "SIMPresent"; | 124 const char kSIMPresent[] = "SIMPresent"; |
125 const char kSupportedCarriers[] = "SupportedCarriers"; | 125 const char kSupportedCarriers[] = "SupportedCarriers"; |
126 const char kSupportNetworkScan[] = "SupportNetworkScan"; | 126 const char kSupportNetworkScan[] = "SupportNetworkScan"; |
| 127 const char kTechnologyCdma1Xrtt[] = "CDMA1XRTT"; |
| 128 const char kTechnologyEdge[] = "EDGE"; |
| 129 const char kTechnologyEvdo[] = "EVDO"; |
| 130 const char kTechnologyGprs[] = "GPRS"; |
| 131 const char kTechnologyGsm[] = "GSM"; |
| 132 const char kTechnologyHspa[] = "HSPA"; |
| 133 const char kTechnologyHspaPlus[] = "HSPAPlus"; |
| 134 const char kTechnologyLte[] = "LTE"; |
| 135 const char kTechnologyLteAdvanced[] = "LTEAdvanced"; |
| 136 const char kTechnologyUmts[] = "UMTS"; |
127 } // namespace cellular | 137 } // namespace cellular |
128 | 138 |
129 namespace cellular_provider { | 139 namespace cellular_provider { |
130 const char kCode[] = "Code"; | 140 const char kCode[] = "Code"; |
131 const char kCountry[] = "Country"; | 141 const char kCountry[] = "Country"; |
132 const char kName[] = "Name"; | 142 const char kName[] = "Name"; |
133 } // namespace cellular_provider | 143 } // namespace cellular_provider |
134 | 144 |
135 namespace cellular_apn { | 145 namespace cellular_apn { |
136 const char kAccessPointName[] = "AccessPointName"; | 146 const char kAccessPointName[] = "AccessPointName"; |
(...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
383 const char kLoginIDField[] = "${LOGIN_ID}"; | 393 const char kLoginIDField[] = "${LOGIN_ID}"; |
384 const char kEmailField[] = "${LOGIN_EMAIL}"; | 394 const char kEmailField[] = "${LOGIN_EMAIL}"; |
385 } // namespace substitutes | 395 } // namespace substitutes |
386 | 396 |
387 namespace global_network_config { | 397 namespace global_network_config { |
388 const char kAllowOnlyPolicyNetworksToAutoconnect[] = | 398 const char kAllowOnlyPolicyNetworksToAutoconnect[] = |
389 "AllowOnlyPolicyNetworksToAutoconnect"; | 399 "AllowOnlyPolicyNetworksToAutoconnect"; |
390 } // global_network_config | 400 } // global_network_config |
391 | 401 |
392 } // namespace onc | 402 } // namespace onc |
OLD | NEW |