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

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

Issue 1019033002: Add an ONC property for the third-party VPN provider extension ID (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed browser tests. Created 5 years, 9 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
« no previous file with comments | « components/onc/onc_constants.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 331 matching lines...) Expand 10 before | Expand all | Expand 10 after
342 const char kVerifyX509[] = "VerifyX509"; 342 const char kVerifyX509[] = "VerifyX509";
343 } // namespace openvpn 343 } // namespace openvpn
344 344
345 namespace openvpn_user_auth_type { 345 namespace openvpn_user_auth_type {
346 const char kNone[] = "None"; 346 const char kNone[] = "None";
347 const char kOTP[] = "OTP"; 347 const char kOTP[] = "OTP";
348 const char kPassword[] = "Password"; 348 const char kPassword[] = "Password";
349 const char kPasswordAndOTP[] = "PasswordAndOTP"; 349 const char kPasswordAndOTP[] = "PasswordAndOTP";
350 } // openvpn_user_auth_type 350 } // openvpn_user_auth_type
351 351
352 namespace third_party_vpn {
353 const char kExtensionID[] = "ExtensionID";
354 } // third_party_vpn
355
352 namespace verify_x509 { 356 namespace verify_x509 {
353 const char kName[] = "Name"; 357 const char kName[] = "Name";
354 const char kType[] = "Type"; 358 const char kType[] = "Type";
355 359
356 namespace types { 360 namespace types {
357 const char kName[] = "name"; 361 const char kName[] = "name";
358 const char kNamePrefix[] = "name-prefix"; 362 const char kNamePrefix[] = "name-prefix";
359 const char kSubject[] = "subject"; 363 const char kSubject[] = "subject";
360 } // namespace types 364 } // namespace types
361 } // namespace verify_x509 365 } // namespace verify_x509
(...skipping 17 matching lines...) Expand all
379 const char kLoginIDField[] = "${LOGIN_ID}"; 383 const char kLoginIDField[] = "${LOGIN_ID}";
380 const char kEmailField[] = "${LOGIN_EMAIL}"; 384 const char kEmailField[] = "${LOGIN_EMAIL}";
381 } // namespace substitutes 385 } // namespace substitutes
382 386
383 namespace global_network_config { 387 namespace global_network_config {
384 const char kAllowOnlyPolicyNetworksToAutoconnect[] = 388 const char kAllowOnlyPolicyNetworksToAutoconnect[] =
385 "AllowOnlyPolicyNetworksToAutoconnect"; 389 "AllowOnlyPolicyNetworksToAutoconnect";
386 } // global_network_config 390 } // global_network_config
387 391
388 } // namespace onc 392 } // namespace onc
OLDNEW
« no previous file with comments | « components/onc/onc_constants.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698