Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(529)

Side by Side Diff: components/onc/onc_constants.cc

Issue 492383002: Use ONC for Cellular APN and SimLock in Settings (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix tests Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 const char kCarrier[] = "Carrier"; 84 const char kCarrier[] = "Carrier";
85 const char kESN[] = "ESN"; 85 const char kESN[] = "ESN";
86 const char kFamily[] = "Family"; 86 const char kFamily[] = "Family";
87 const char kFirmwareRevision[] = "FirmwareRevision"; 87 const char kFirmwareRevision[] = "FirmwareRevision";
88 const char kFoundNetworks[] = "FoundNetworks"; 88 const char kFoundNetworks[] = "FoundNetworks";
89 const char kHardwareRevision[] = "HardwareRevision"; 89 const char kHardwareRevision[] = "HardwareRevision";
90 const char kHomeProvider[] = "HomeProvider"; 90 const char kHomeProvider[] = "HomeProvider";
91 const char kICCID[] = "ICCID"; 91 const char kICCID[] = "ICCID";
92 const char kIMEI[] = "IMEI"; 92 const char kIMEI[] = "IMEI";
93 const char kIMSI[] = "IMSI"; 93 const char kIMSI[] = "IMSI";
94 const char kLastGoodAPN[] = "LastGoodAPN";
94 const char kManufacturer[] = "Manufacturer"; 95 const char kManufacturer[] = "Manufacturer";
95 const char kMDN[] = "MDN"; 96 const char kMDN[] = "MDN";
96 const char kMEID[] = "MEID"; 97 const char kMEID[] = "MEID";
97 const char kMIN[] = "MIN"; 98 const char kMIN[] = "MIN";
98 const char kModelID[] = "ModelID"; 99 const char kModelID[] = "ModelID";
99 const char kNetworkTechnology[] = "NetworkTechnology"; 100 const char kNetworkTechnology[] = "NetworkTechnology";
100 const char kPRLVersion[] = "PRLVersion"; 101 const char kPRLVersion[] = "PRLVersion";
101 const char kProviderRequiresRoaming[] = "ProviderRequiresRoaming"; 102 const char kProviderRequiresRoaming[] = "ProviderRequiresRoaming";
102 const char kRoamingState[] = "RoamingState"; 103 const char kRoamingState[] = "RoamingState";
103 const char kSelectedNetwork[] = "SelectedNetwork"; 104 const char kSelectedNetwork[] = "SelectedNetwork";
104 const char kServingOperator[] = "ServingOperator"; 105 const char kServingOperator[] = "ServingOperator";
105 const char kSIMLockStatus[] = "SIMLockStatus"; 106 const char kSIMLockStatus[] = "SIMLockStatus";
106 const char kSIMPresent[] = "SIMPresent"; 107 const char kSIMPresent[] = "SIMPresent";
107 const char kSupportedCarriers[] = "SupportedCarriers"; 108 const char kSupportedCarriers[] = "SupportedCarriers";
108 const char kSupportNetworkScan[] = "SupportNetworkScan"; 109 const char kSupportNetworkScan[] = "SupportNetworkScan";
109 } // namespace cellular 110 } // namespace cellular
110 111
111 namespace cellular_provider { 112 namespace cellular_provider {
112 const char kCode[] = "Code"; 113 const char kCode[] = "Code";
113 const char kCountry[] = "Country"; 114 const char kCountry[] = "Country";
114 const char kName[] = "Name"; 115 const char kName[] = "Name";
115 } // namespace cellular_provider 116 } // namespace cellular_provider
116 117
117 namespace cellular_apn { 118 namespace cellular_apn {
119 const char kAccessPointName[] = "AccessPointName";
118 const char kName[] = "Name"; 120 const char kName[] = "Name";
119 const char kUsername[] = "Username"; 121 const char kUsername[] = "Username";
120 const char kPassword[] = "Password"; 122 const char kPassword[] = "Password";
121 const char kLocalizedName[] = "LocalizedName"; 123 const char kLocalizedName[] = "LocalizedName";
122 const char kLanguage[] = "LocalizedName"; 124 const char kLanguage[] = "LocalizedName";
123 } // namespace cellular_apn 125 } // namespace cellular_apn
124 126
125 namespace cellular_found_network { 127 namespace cellular_found_network {
126 const char kStatus[] = "Status"; 128 const char kStatus[] = "Status";
127 const char kNetworkId[] = "NetworkId"; 129 const char kNetworkId[] = "NetworkId";
(...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after
340 const char kLoginIDField[] = "${LOGIN_ID}"; 342 const char kLoginIDField[] = "${LOGIN_ID}";
341 const char kEmailField[] = "${LOGIN_EMAIL}"; 343 const char kEmailField[] = "${LOGIN_EMAIL}";
342 } // namespace substitutes 344 } // namespace substitutes
343 345
344 namespace global_network_config { 346 namespace global_network_config {
345 const char kAllowOnlyPolicyNetworksToAutoconnect[] = 347 const char kAllowOnlyPolicyNetworksToAutoconnect[] =
346 "AllowOnlyPolicyNetworksToAutoconnect"; 348 "AllowOnlyPolicyNetworksToAutoconnect";
347 } // global_network_config 349 } // global_network_config
348 350
349 } // namespace onc 351 } // namespace onc
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698