| 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 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 const char kMDN[] = "MDN"; | 108 const char kMDN[] = "MDN"; |
| 109 const char kMEID[] = "MEID"; | 109 const char kMEID[] = "MEID"; |
| 110 const char kMIN[] = "MIN"; | 110 const char kMIN[] = "MIN"; |
| 111 const char kModelID[] = "ModelID"; | 111 const char kModelID[] = "ModelID"; |
| 112 const char kNetworkTechnology[] = "NetworkTechnology"; | 112 const char kNetworkTechnology[] = "NetworkTechnology"; |
| 113 const char kPRLVersion[] = "PRLVersion"; | 113 const char kPRLVersion[] = "PRLVersion"; |
| 114 const char kProviderRequiresRoaming[] = "ProviderRequiresRoaming"; | 114 const char kProviderRequiresRoaming[] = "ProviderRequiresRoaming"; |
| 115 const char kRoamingState[] = "RoamingState"; | 115 const char kRoamingState[] = "RoamingState"; |
| 116 const char kHome[] = "Home"; | 116 const char kHome[] = "Home"; |
| 117 const char kRoaming[] = "Roaming"; | 117 const char kRoaming[] = "Roaming"; |
| 118 const char kSelectedNetwork[] = "SelectedNetwork"; | |
| 119 const char kServingOperator[] = "ServingOperator"; | 118 const char kServingOperator[] = "ServingOperator"; |
| 120 const char kSIMLockStatus[] = "SIMLockStatus"; | 119 const char kSIMLockStatus[] = "SIMLockStatus"; |
| 121 const char kSIMPresent[] = "SIMPresent"; | 120 const char kSIMPresent[] = "SIMPresent"; |
| 122 const char kSupportedCarriers[] = "SupportedCarriers"; | 121 const char kSupportedCarriers[] = "SupportedCarriers"; |
| 123 const char kSupportNetworkScan[] = "SupportNetworkScan"; | 122 const char kSupportNetworkScan[] = "SupportNetworkScan"; |
| 124 } // namespace cellular | 123 } // namespace cellular |
| 125 | 124 |
| 126 namespace cellular_provider { | 125 namespace cellular_provider { |
| 127 const char kCode[] = "Code"; | 126 const char kCode[] = "Code"; |
| 128 const char kCountry[] = "Country"; | 127 const char kCountry[] = "Country"; |
| (...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 357 const char kLoginIDField[] = "${LOGIN_ID}"; | 356 const char kLoginIDField[] = "${LOGIN_ID}"; |
| 358 const char kEmailField[] = "${LOGIN_EMAIL}"; | 357 const char kEmailField[] = "${LOGIN_EMAIL}"; |
| 359 } // namespace substitutes | 358 } // namespace substitutes |
| 360 | 359 |
| 361 namespace global_network_config { | 360 namespace global_network_config { |
| 362 const char kAllowOnlyPolicyNetworksToAutoconnect[] = | 361 const char kAllowOnlyPolicyNetworksToAutoconnect[] = |
| 363 "AllowOnlyPolicyNetworksToAutoconnect"; | 362 "AllowOnlyPolicyNetworksToAutoconnect"; |
| 364 } // global_network_config | 363 } // global_network_config |
| 365 | 364 |
| 366 } // namespace onc | 365 } // namespace onc |
| OLD | NEW |