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

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

Issue 1085703002: Add an ONC property for proactive key caching. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add tests for converting in both directions. Created 5 years, 8 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 274 matching lines...) Expand 10 before | Expand all | Expand 10 after
285 const char kMSCHAPv2[] = "MSCHAPv2"; 285 const char kMSCHAPv2[] = "MSCHAPv2";
286 const char kOuter[] = "Outer"; 286 const char kOuter[] = "Outer";
287 const char kPAP[] = "PAP"; 287 const char kPAP[] = "PAP";
288 const char kPEAP[] = "PEAP"; 288 const char kPEAP[] = "PEAP";
289 const char kPassword[] = "Password"; 289 const char kPassword[] = "Password";
290 const char kSaveCredentials[] = "SaveCredentials"; 290 const char kSaveCredentials[] = "SaveCredentials";
291 const char kServerCAPEMs[] = "ServerCAPEMs"; 291 const char kServerCAPEMs[] = "ServerCAPEMs";
292 const char kServerCARef[] = "ServerCARef"; 292 const char kServerCARef[] = "ServerCARef";
293 const char kServerCARefs[] = "ServerCARefs"; 293 const char kServerCARefs[] = "ServerCARefs";
294 const char kUseSystemCAs[] = "UseSystemCAs"; 294 const char kUseSystemCAs[] = "UseSystemCAs";
295 const char kUseProactiveKeyCaching[] = "UseProactiveKeyCaching";
295 } // namespace eap 296 } // namespace eap
296 297
297 namespace vpn { 298 namespace vpn {
298 const char kAutoConnect[] = "AutoConnect"; 299 const char kAutoConnect[] = "AutoConnect";
299 const char kHost[] = "Host"; 300 const char kHost[] = "Host";
300 const char kIPsec[] = "IPsec"; 301 const char kIPsec[] = "IPsec";
301 const char kL2TP[] = "L2TP"; 302 const char kL2TP[] = "L2TP";
302 const char kOpenVPN[] = "OpenVPN"; 303 const char kOpenVPN[] = "OpenVPN";
303 const char kPassword[] = "Password"; 304 const char kPassword[] = "Password";
304 const char kSaveCredentials[] = "SaveCredentials"; 305 const char kSaveCredentials[] = "SaveCredentials";
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
415 } // global_network_config 416 } // global_network_config
416 417
417 namespace device_state { 418 namespace device_state {
418 const char kUninitialized[] = "Uninitialized"; 419 const char kUninitialized[] = "Uninitialized";
419 const char kDisabled[] = "Disabled"; 420 const char kDisabled[] = "Disabled";
420 const char kEnabling[] = "Enabling"; 421 const char kEnabling[] = "Enabling";
421 const char kEnabled[] = "Enabled"; 422 const char kEnabled[] = "Enabled";
422 } // device_state 423 } // device_state
423 424
424 } // namespace onc 425 } // 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