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

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

Issue 249193003: Add Shill to ONC translation of IPConfig. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 8 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 #ifndef COMPONENTS_ONC_ONC_CONSTANTS_H_ 4 #ifndef COMPONENTS_ONC_ONC_CONSTANTS_H_
5 #define COMPONENTS_ONC_ONC_CONSTANTS_H_ 5 #define COMPONENTS_ONC_ONC_CONSTANTS_H_
6 6
7 #include "components/onc/onc_export.h" 7 #include "components/onc/onc_export.h"
8 8
9 // Constants for ONC properties. 9 // Constants for ONC properties.
10 namespace onc { 10 namespace onc {
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
128 ONC_EXPORT extern const char kConnected[]; 128 ONC_EXPORT extern const char kConnected[];
129 ONC_EXPORT extern const char kConnecting[]; 129 ONC_EXPORT extern const char kConnecting[];
130 ONC_EXPORT extern const char kNotConnected[]; 130 ONC_EXPORT extern const char kNotConnected[];
131 } // namespace connection_state 131 } // namespace connection_state
132 132
133 namespace ipconfig { 133 namespace ipconfig {
134 ONC_EXPORT extern const char kGateway[]; 134 ONC_EXPORT extern const char kGateway[];
135 ONC_EXPORT extern const char kIPAddress[]; 135 ONC_EXPORT extern const char kIPAddress[];
136 ONC_EXPORT extern const char kIPv4[]; 136 ONC_EXPORT extern const char kIPv4[];
137 ONC_EXPORT extern const char kIPv6[]; 137 ONC_EXPORT extern const char kIPv6[];
138 ONC_EXPORT extern const char kNameServers[];
138 ONC_EXPORT extern const char kRoutingPrefix[]; 139 ONC_EXPORT extern const char kRoutingPrefix[];
139 ONC_EXPORT extern const char kType[]; 140 ONC_EXPORT extern const char kType[];
140 } // namespace ipconfig 141 } // namespace ipconfig
141 142
142 namespace ethernet { 143 namespace ethernet {
143 ONC_EXPORT extern const char kAuthentication[]; 144 ONC_EXPORT extern const char kAuthentication[];
144 ONC_EXPORT extern const char kEAP[]; 145 ONC_EXPORT extern const char kEAP[];
145 ONC_EXPORT extern const char kNone[]; 146 ONC_EXPORT extern const char kNone[];
146 ONC_EXPORT extern const char k8021X[]; 147 ONC_EXPORT extern const char k8021X[];
147 } // namespace ethernet 148 } // namespace ethernet
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after
328 } // namespace proxy 329 } // namespace proxy
329 330
330 namespace global_network_config { 331 namespace global_network_config {
331 ONC_EXPORT extern const char kAllowOnlyPolicyNetworksToAutoconnect[]; 332 ONC_EXPORT extern const char kAllowOnlyPolicyNetworksToAutoconnect[];
332 } // global_network_config 333 } // global_network_config
333 334
334 } // namespace onc 335 } // namespace onc
335 336
336 #endif // COMPONENTS_ONC_ONC_CONSTANTS_H_ 337 #endif // COMPONENTS_ONC_ONC_CONSTANTS_H_
337 338
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698