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

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

Issue 1283613005: Add networkingPrivate.getThirdPartyVpnProviderList (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@issue_515987_cr_network_list
Patch Set: Rebase Created 5 years, 4 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 361 matching lines...) Expand 10 before | Expand all | Expand 10 after
372 372
373 namespace openvpn_user_auth_type { 373 namespace openvpn_user_auth_type {
374 const char kNone[] = "None"; 374 const char kNone[] = "None";
375 const char kOTP[] = "OTP"; 375 const char kOTP[] = "OTP";
376 const char kPassword[] = "Password"; 376 const char kPassword[] = "Password";
377 const char kPasswordAndOTP[] = "PasswordAndOTP"; 377 const char kPasswordAndOTP[] = "PasswordAndOTP";
378 } // openvpn_user_auth_type 378 } // openvpn_user_auth_type
379 379
380 namespace third_party_vpn { 380 namespace third_party_vpn {
381 const char kExtensionID[] = "ExtensionID"; 381 const char kExtensionID[] = "ExtensionID";
382 const char kName[] = "Name";
382 } // third_party_vpn 383 } // third_party_vpn
383 384
384 namespace verify_x509 { 385 namespace verify_x509 {
385 const char kName[] = "Name"; 386 const char kName[] = "Name";
386 const char kType[] = "Type"; 387 const char kType[] = "Type";
387 388
388 namespace types { 389 namespace types {
389 const char kName[] = "name"; 390 const char kName[] = "name";
390 const char kNamePrefix[] = "name-prefix"; 391 const char kNamePrefix[] = "name-prefix";
391 const char kSubject[] = "subject"; 392 const char kSubject[] = "subject";
(...skipping 26 matching lines...) Expand all
418 } // global_network_config 419 } // global_network_config
419 420
420 namespace device_state { 421 namespace device_state {
421 const char kUninitialized[] = "Uninitialized"; 422 const char kUninitialized[] = "Uninitialized";
422 const char kDisabled[] = "Disabled"; 423 const char kDisabled[] = "Disabled";
423 const char kEnabling[] = "Enabling"; 424 const char kEnabling[] = "Enabling";
424 const char kEnabled[] = "Enabled"; 425 const char kEnabled[] = "Enabled";
425 } // device_state 426 } // device_state
426 427
427 } // namespace onc 428 } // namespace onc
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698