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

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

Issue 61903002: ChromeOS: Add more host verification options for OpenVpn. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month 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 270 matching lines...) Expand 10 before | Expand all | Expand 10 after
281 ONC_EXPORT extern const char kServerCARef[]; 281 ONC_EXPORT extern const char kServerCARef[];
282 ONC_EXPORT extern const char kServerCertPEM[]; 282 ONC_EXPORT extern const char kServerCertPEM[];
283 ONC_EXPORT extern const char kServerCertRef[]; 283 ONC_EXPORT extern const char kServerCertRef[];
284 ONC_EXPORT extern const char kServerPollTimeout[]; 284 ONC_EXPORT extern const char kServerPollTimeout[];
285 ONC_EXPORT extern const char kServer[]; 285 ONC_EXPORT extern const char kServer[];
286 ONC_EXPORT extern const char kShaper[]; 286 ONC_EXPORT extern const char kShaper[];
287 ONC_EXPORT extern const char kStaticChallenge[]; 287 ONC_EXPORT extern const char kStaticChallenge[];
288 ONC_EXPORT extern const char kTLSAuthContents[]; 288 ONC_EXPORT extern const char kTLSAuthContents[];
289 ONC_EXPORT extern const char kTLSRemote[]; 289 ONC_EXPORT extern const char kTLSRemote[];
290 ONC_EXPORT extern const char kVerb[]; 290 ONC_EXPORT extern const char kVerb[];
291 ONC_EXPORT extern const char kVerifyHash[];
292 ONC_EXPORT extern const char kVerifyX509[];
291 } // namespace openvpn 293 } // namespace openvpn
292 294
295 namespace verify_x509 {
296 ONC_EXPORT extern const char kName[];
297 ONC_EXPORT extern const char kType[];
298
299 namespace types {
300 ONC_EXPORT extern const char kName[];
301 ONC_EXPORT extern const char kNamePrefix[];
302 ONC_EXPORT extern const char kSubject[];
303 } // namespace types
304 } // namespace verify_x509
305
293 namespace substitutes { 306 namespace substitutes {
294 ONC_EXPORT extern const char kEmailField[]; 307 ONC_EXPORT extern const char kEmailField[];
295 ONC_EXPORT extern const char kLoginIDField[]; 308 ONC_EXPORT extern const char kLoginIDField[];
296 } // namespace substitutes 309 } // namespace substitutes
297 310
298 namespace proxy { 311 namespace proxy {
299 ONC_EXPORT extern const char kDirect[]; 312 ONC_EXPORT extern const char kDirect[];
300 ONC_EXPORT extern const char kExcludeDomains[]; 313 ONC_EXPORT extern const char kExcludeDomains[];
301 ONC_EXPORT extern const char kFtp[]; 314 ONC_EXPORT extern const char kFtp[];
302 ONC_EXPORT extern const char kHost[]; 315 ONC_EXPORT extern const char kHost[];
303 ONC_EXPORT extern const char kHttp[]; 316 ONC_EXPORT extern const char kHttp[];
304 ONC_EXPORT extern const char kHttps[]; 317 ONC_EXPORT extern const char kHttps[];
305 ONC_EXPORT extern const char kManual[]; 318 ONC_EXPORT extern const char kManual[];
306 ONC_EXPORT extern const char kPAC[]; 319 ONC_EXPORT extern const char kPAC[];
307 ONC_EXPORT extern const char kPort[]; 320 ONC_EXPORT extern const char kPort[];
308 ONC_EXPORT extern const char kSocks[]; 321 ONC_EXPORT extern const char kSocks[];
309 ONC_EXPORT extern const char kType[]; 322 ONC_EXPORT extern const char kType[];
310 ONC_EXPORT extern const char kWPAD[]; 323 ONC_EXPORT extern const char kWPAD[];
311 } // namespace proxy 324 } // namespace proxy
312 325
313 namespace global_network_config { 326 namespace global_network_config {
314 ONC_EXPORT extern const char kAllowOnlyPolicyNetworksToAutoconnect[]; 327 ONC_EXPORT extern const char kAllowOnlyPolicyNetworksToAutoconnect[];
315 } // global_network_config 328 } // global_network_config
316 329
317 } // namespace onc 330 } // namespace onc
318 331
319 #endif // COMPONENTS_ONC_ONC_CONSTANTS_H_ 332 #endif // COMPONENTS_ONC_ONC_CONSTANTS_H_
320 333
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698