OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "chromeos/network/onc/onc_constants.h" | 5 #include "chromeos/network/onc/onc_constants.h" |
6 | 6 |
7 namespace chromeos { | 7 namespace chromeos { |
8 | 8 |
9 // Constants for ONC properties. | 9 // Constants for ONC properties. |
10 namespace onc { | 10 namespace onc { |
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
139 const char kIssuer[] = "Issuer"; | 139 const char kIssuer[] = "Issuer"; |
140 const char kLocality[] = "Locality"; | 140 const char kLocality[] = "Locality"; |
141 const char kNone[] = "None"; | 141 const char kNone[] = "None"; |
142 const char kOrganization[] = "Organization"; | 142 const char kOrganization[] = "Organization"; |
143 const char kOrganizationalUnit[] = "OrganizationalUnit"; | 143 const char kOrganizationalUnit[] = "OrganizationalUnit"; |
144 const char kPKCS12[] = "PKCS12"; | 144 const char kPKCS12[] = "PKCS12"; |
145 const char kPattern[] = "Pattern"; | 145 const char kPattern[] = "Pattern"; |
146 const char kRef[] = "Ref"; | 146 const char kRef[] = "Ref"; |
147 const char kServer[] = "Server"; | 147 const char kServer[] = "Server"; |
148 const char kSubject[] = "Subject"; | 148 const char kSubject[] = "Subject"; |
149 const char kTrust[] = "Trust"; | 149 const char kTrustBits[] = "TrustBits"; |
150 const char kType[] = "Type"; | 150 const char kType[] = "Type"; |
151 const char kWeb[] = "Web"; | 151 const char kWeb[] = "Web"; |
152 const char kX509[] = "X509"; | 152 const char kX509[] = "X509"; |
153 } // namespace certificate | 153 } // namespace certificate |
154 | 154 |
155 namespace encrypted { | 155 namespace encrypted { |
156 const char kAES256[] = "AES256"; | 156 const char kAES256[] = "AES256"; |
157 const char kCipher[] = "Cipher"; | 157 const char kCipher[] = "Cipher"; |
158 const char kCiphertext[] = "Ciphertext"; | 158 const char kCiphertext[] = "Ciphertext"; |
159 const char kHMACMethod[] = "HMACMethod"; | 159 const char kHMACMethod[] = "HMACMethod"; |
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
261 } // namespace proxy | 261 } // namespace proxy |
262 | 262 |
263 namespace substitutes { | 263 namespace substitutes { |
264 const char kLoginIDField[] = "${LOGIN_ID}"; | 264 const char kLoginIDField[] = "${LOGIN_ID}"; |
265 const char kEmailField[] = "${LOGIN_EMAIL}"; | 265 const char kEmailField[] = "${LOGIN_EMAIL}"; |
266 } // namespace substitutes | 266 } // namespace substitutes |
267 | 267 |
268 } // namespace onc | 268 } // namespace onc |
269 | 269 |
270 } // namespace chromeos | 270 } // namespace chromeos |
OLD | NEW |