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

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

Issue 267433005: Provide IPConfigs in networkingPrivate.GetProperties (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 6 years, 7 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 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
121 } // namespace connection_state 121 } // namespace connection_state
122 122
123 namespace ethernet { 123 namespace ethernet {
124 const char kAuthentication[] = "Authentication"; 124 const char kAuthentication[] = "Authentication";
125 const char kEAP[] = "EAP"; 125 const char kEAP[] = "EAP";
126 const char kNone[] = "None"; 126 const char kNone[] = "None";
127 const char k8021X[] = "8021X"; 127 const char k8021X[] = "8021X";
128 } // namespace ethernet 128 } // namespace ethernet
129 129
130 namespace ipconfig { 130 namespace ipconfig {
131 const char kDHCPv4[] = "DHCPv4";
132 const char kDHCPv6[] = "DHCPv6";
131 const char kGateway[] = "Gateway"; 133 const char kGateway[] = "Gateway";
132 const char kIPAddress[] = "IPAddress"; 134 const char kIPAddress[] = "IPAddress";
133 const char kIPv4[] = "IPv4"; 135 const char kIPv4[] = "IPv4";
134 const char kIPv6[] = "IPv6"; 136 const char kIPv6[] = "IPv6";
135 const char kNameServers[] = "NameServers"; 137 const char kNameServers[] = "NameServers";
136 const char kRoutingPrefix[] = "RoutingPrefix"; 138 const char kRoutingPrefix[] = "RoutingPrefix";
137 const char kType[] = "Type"; 139 const char kType[] = "Type";
138 } // namespace ipconfig 140 } // namespace ipconfig
139 141
140 namespace wifi { 142 namespace wifi {
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after
317 const char kLoginIDField[] = "${LOGIN_ID}"; 319 const char kLoginIDField[] = "${LOGIN_ID}";
318 const char kEmailField[] = "${LOGIN_EMAIL}"; 320 const char kEmailField[] = "${LOGIN_EMAIL}";
319 } // namespace substitutes 321 } // namespace substitutes
320 322
321 namespace global_network_config { 323 namespace global_network_config {
322 const char kAllowOnlyPolicyNetworksToAutoconnect[] = 324 const char kAllowOnlyPolicyNetworksToAutoconnect[] =
323 "AllowOnlyPolicyNetworksToAutoconnect"; 325 "AllowOnlyPolicyNetworksToAutoconnect";
324 } // global_network_config 326 } // global_network_config
325 327
326 } // namespace onc 328 } // 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