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

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

Issue 509643003: Use GetManagedProperties in InternetOptionsHandler (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@issue_279351_internet_options_8a
Patch Set: 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
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 21 matching lines...) Expand all
32 const char kUnencryptedConfiguration[] = "UnencryptedConfiguration"; 32 const char kUnencryptedConfiguration[] = "UnencryptedConfiguration";
33 } // namespace toplevel_config 33 } // namespace toplevel_config
34 34
35 // Network Configuration 35 // Network Configuration
36 namespace network_config { 36 namespace network_config {
37 const char kCellular[] = "Cellular"; 37 const char kCellular[] = "Cellular";
38 const char kDevice[] = "Device"; 38 const char kDevice[] = "Device";
39 const char kEthernet[] = "Ethernet"; 39 const char kEthernet[] = "Ethernet";
40 const char kGUID[] = "GUID"; 40 const char kGUID[] = "GUID";
41 const char kIPConfigs[] = "IPConfigs"; 41 const char kIPConfigs[] = "IPConfigs";
42 const char kSavedIPConfig[] = "SavedIPConfig";
43 const char kStaticIPConfig[] = "StaticIPConfig";
42 const char kMacAddress[] = "MacAddress"; 44 const char kMacAddress[] = "MacAddress";
43 const char kName[] = "Name"; 45 const char kName[] = "Name";
44 const char kNameServers[] = "NameServers"; 46 const char kNameServers[] = "NameServers";
45 const char kPriority[] = "Priority"; 47 const char kPriority[] = "Priority";
46 const char kProxySettings[] = "ProxySettings"; 48 const char kProxySettings[] = "ProxySettings";
47 const char kSearchDomains[] = "SearchDomains"; 49 const char kSearchDomains[] = "SearchDomains";
48 const char kConnectionState[] = "ConnectionState"; 50 const char kConnectionState[] = "ConnectionState";
49 const char kRestricted[] = "Restricted"; 51 const char kRestricted[] = "Restricted";
50 const char kConnectable[] = "Connectable"; 52 const char kConnectable[] = "Connectable";
51 const char kErrorState[] = "ErrorState"; 53 const char kErrorState[] = "ErrorState";
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
160 } // namespace ethernet 162 } // namespace ethernet
161 163
162 namespace ipconfig { 164 namespace ipconfig {
163 const char kGateway[] = "Gateway"; 165 const char kGateway[] = "Gateway";
164 const char kIPAddress[] = "IPAddress"; 166 const char kIPAddress[] = "IPAddress";
165 const char kIPv4[] = "IPv4"; 167 const char kIPv4[] = "IPv4";
166 const char kIPv6[] = "IPv6"; 168 const char kIPv6[] = "IPv6";
167 const char kNameServers[] = "NameServers"; 169 const char kNameServers[] = "NameServers";
168 const char kRoutingPrefix[] = "RoutingPrefix"; 170 const char kRoutingPrefix[] = "RoutingPrefix";
169 const char kType[] = "Type"; 171 const char kType[] = "Type";
172 const char kWebProxyAutoDiscoveryUrl[] = "WebProxyAutoDiscovery";
170 } // namespace ipconfig 173 } // namespace ipconfig
171 174
172 namespace wifi { 175 namespace wifi {
173 const char kAutoConnect[] = "AutoConnect"; 176 const char kAutoConnect[] = "AutoConnect";
174 const char kBSSID[] = "BSSID"; 177 const char kBSSID[] = "BSSID";
175 const char kEAP[] = "EAP"; 178 const char kEAP[] = "EAP";
176 const char kFrequency[] = "Frequency"; 179 const char kFrequency[] = "Frequency";
177 const char kFrequencyList[] = "FrequencyList"; 180 const char kFrequencyList[] = "FrequencyList";
178 const char kHiddenSSID[] = "HiddenSSID"; 181 const char kHiddenSSID[] = "HiddenSSID";
179 const char kPassphrase[] = "Passphrase"; 182 const char kPassphrase[] = "Passphrase";
(...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after
350 const char kLoginIDField[] = "${LOGIN_ID}"; 353 const char kLoginIDField[] = "${LOGIN_ID}";
351 const char kEmailField[] = "${LOGIN_EMAIL}"; 354 const char kEmailField[] = "${LOGIN_EMAIL}";
352 } // namespace substitutes 355 } // namespace substitutes
353 356
354 namespace global_network_config { 357 namespace global_network_config {
355 const char kAllowOnlyPolicyNetworksToAutoconnect[] = 358 const char kAllowOnlyPolicyNetworksToAutoconnect[] =
356 "AllowOnlyPolicyNetworksToAutoconnect"; 359 "AllowOnlyPolicyNetworksToAutoconnect";
357 } // global_network_config 360 } // global_network_config
358 361
359 } // namespace onc 362 } // namespace onc
OLDNEW
« components/onc/docs/onc_spec.html ('K') | « components/onc/onc_constants.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698