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

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

Issue 1717123002: Allow ${CERT_SAN_EMAIL} and ${CERT_SAN_UPN} in the ONC Identity field (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: incorporate code review feedback Created 4 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
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 393 matching lines...) Expand 10 before | Expand all | Expand 10 after
404 const char kPAC[] = "PAC"; 404 const char kPAC[] = "PAC";
405 const char kPort[] = "Port"; 405 const char kPort[] = "Port";
406 const char kSocks[] = "SOCKS"; 406 const char kSocks[] = "SOCKS";
407 const char kType[] = "Type"; 407 const char kType[] = "Type";
408 const char kWPAD[] = "WPAD"; 408 const char kWPAD[] = "WPAD";
409 } // namespace proxy 409 } // namespace proxy
410 410
411 namespace substitutes { 411 namespace substitutes {
412 const char kLoginIDField[] = "${LOGIN_ID}"; 412 const char kLoginIDField[] = "${LOGIN_ID}";
413 const char kEmailField[] = "${LOGIN_EMAIL}"; 413 const char kEmailField[] = "${LOGIN_EMAIL}";
414 const char kCertSANEmail[] = "${CERT_SAN_EMAIL}";
415 const char kCertSANUPN[] = "${CERT_SAN_UPN}";
414 } // namespace substitutes 416 } // namespace substitutes
415 417
416 namespace global_network_config { 418 namespace global_network_config {
417 const char kAllowOnlyPolicyNetworksToAutoconnect[] = 419 const char kAllowOnlyPolicyNetworksToAutoconnect[] =
418 "AllowOnlyPolicyNetworksToAutoconnect"; 420 "AllowOnlyPolicyNetworksToAutoconnect";
419 const char kAllowOnlyPolicyNetworksToConnect[] = 421 const char kAllowOnlyPolicyNetworksToConnect[] =
420 "AllowOnlyPolicyNetworksToConnect"; 422 "AllowOnlyPolicyNetworksToConnect";
421 const char kDisableNetworkTypes[] = "DisableNetworkTypes"; 423 const char kDisableNetworkTypes[] = "DisableNetworkTypes";
422 } // global_network_config 424 } // global_network_config
423 425
424 namespace device_state { 426 namespace device_state {
425 const char kUninitialized[] = "Uninitialized"; 427 const char kUninitialized[] = "Uninitialized";
426 const char kDisabled[] = "Disabled"; 428 const char kDisabled[] = "Disabled";
427 const char kEnabling[] = "Enabling"; 429 const char kEnabling[] = "Enabling";
428 const char kEnabled[] = "Enabled"; 430 const char kEnabled[] = "Enabled";
429 } // device_state 431 } // device_state
430 432
431 } // namespace onc 433 } // namespace onc
OLDNEW
« chromeos/network/client_cert_resolver.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