| OLD | NEW |
| 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 #ifndef COMPONENTS_ONC_ONC_CONSTANTS_H_ | 4 #ifndef COMPONENTS_ONC_ONC_CONSTANTS_H_ |
| 5 #define COMPONENTS_ONC_ONC_CONSTANTS_H_ | 5 #define COMPONENTS_ONC_ONC_CONSTANTS_H_ |
| 6 | 6 |
| 7 #include <string> | 7 #include <string> |
| 8 | 8 |
| 9 #include "components/onc/onc_export.h" | 9 #include "components/onc/onc_export.h" |
| 10 | 10 |
| (...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 270 ONC_EXPORT extern const char kXAUTH[]; | 270 ONC_EXPORT extern const char kXAUTH[]; |
| 271 } // namespace ipsec | 271 } // namespace ipsec |
| 272 | 272 |
| 273 namespace openvpn { | 273 namespace openvpn { |
| 274 ONC_EXPORT extern const char kAuthNoCache[]; | 274 ONC_EXPORT extern const char kAuthNoCache[]; |
| 275 ONC_EXPORT extern const char kAuthRetry[]; | 275 ONC_EXPORT extern const char kAuthRetry[]; |
| 276 ONC_EXPORT extern const char kAuth[]; | 276 ONC_EXPORT extern const char kAuth[]; |
| 277 ONC_EXPORT extern const char kCipher[]; | 277 ONC_EXPORT extern const char kCipher[]; |
| 278 ONC_EXPORT extern const char kCompLZO[]; | 278 ONC_EXPORT extern const char kCompLZO[]; |
| 279 ONC_EXPORT extern const char kCompNoAdapt[]; | 279 ONC_EXPORT extern const char kCompNoAdapt[]; |
| 280 ONC_EXPORT extern const char kIgnoreDefaultRoute[]; |
| 280 ONC_EXPORT extern const char kInteract[]; | 281 ONC_EXPORT extern const char kInteract[]; |
| 281 ONC_EXPORT extern const char kKeyDirection[]; | 282 ONC_EXPORT extern const char kKeyDirection[]; |
| 282 ONC_EXPORT extern const char kNoInteract[]; | 283 ONC_EXPORT extern const char kNoInteract[]; |
| 283 ONC_EXPORT extern const char kNone[]; | 284 ONC_EXPORT extern const char kNone[]; |
| 284 ONC_EXPORT extern const char kNsCertType[]; | 285 ONC_EXPORT extern const char kNsCertType[]; |
| 285 ONC_EXPORT extern const char kPort[]; | 286 ONC_EXPORT extern const char kPort[]; |
| 286 ONC_EXPORT extern const char kProto[]; | 287 ONC_EXPORT extern const char kProto[]; |
| 287 ONC_EXPORT extern const char kPushPeerInfo[]; | 288 ONC_EXPORT extern const char kPushPeerInfo[]; |
| 288 ONC_EXPORT extern const char kRemoteCertEKU[]; | 289 ONC_EXPORT extern const char kRemoteCertEKU[]; |
| 289 ONC_EXPORT extern const char kRemoteCertKU[]; | 290 ONC_EXPORT extern const char kRemoteCertKU[]; |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 336 ONC_EXPORT extern const char kWPAD[]; | 337 ONC_EXPORT extern const char kWPAD[]; |
| 337 } // namespace proxy | 338 } // namespace proxy |
| 338 | 339 |
| 339 namespace global_network_config { | 340 namespace global_network_config { |
| 340 ONC_EXPORT extern const char kAllowOnlyPolicyNetworksToAutoconnect[]; | 341 ONC_EXPORT extern const char kAllowOnlyPolicyNetworksToAutoconnect[]; |
| 341 } // global_network_config | 342 } // global_network_config |
| 342 | 343 |
| 343 } // namespace onc | 344 } // namespace onc |
| 344 | 345 |
| 345 #endif // COMPONENTS_ONC_ONC_CONSTANTS_H_ | 346 #endif // COMPONENTS_ONC_ONC_CONSTANTS_H_ |
| OLD | NEW |