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

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

Powered by Google App Engine
This is Rietveld 408576698