| 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 392 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 403 namespace types { | 403 namespace types { |
| 404 ONC_EXPORT extern const char kName[]; | 404 ONC_EXPORT extern const char kName[]; |
| 405 ONC_EXPORT extern const char kNamePrefix[]; | 405 ONC_EXPORT extern const char kNamePrefix[]; |
| 406 ONC_EXPORT extern const char kSubject[]; | 406 ONC_EXPORT extern const char kSubject[]; |
| 407 } // namespace types | 407 } // namespace types |
| 408 } // namespace verify_x509 | 408 } // namespace verify_x509 |
| 409 | 409 |
| 410 namespace substitutes { | 410 namespace substitutes { |
| 411 ONC_EXPORT extern const char kEmailField[]; | 411 ONC_EXPORT extern const char kEmailField[]; |
| 412 ONC_EXPORT extern const char kLoginIDField[]; | 412 ONC_EXPORT extern const char kLoginIDField[]; |
| 413 ONC_EXPORT extern const char kCertSANEmail[]; |
| 414 ONC_EXPORT extern const char kCertSANUPN[]; |
| 413 } // namespace substitutes | 415 } // namespace substitutes |
| 414 | 416 |
| 415 namespace proxy { | 417 namespace proxy { |
| 416 ONC_EXPORT extern const char kDirect[]; | 418 ONC_EXPORT extern const char kDirect[]; |
| 417 ONC_EXPORT extern const char kExcludeDomains[]; | 419 ONC_EXPORT extern const char kExcludeDomains[]; |
| 418 ONC_EXPORT extern const char kFtp[]; | 420 ONC_EXPORT extern const char kFtp[]; |
| 419 ONC_EXPORT extern const char kHost[]; | 421 ONC_EXPORT extern const char kHost[]; |
| 420 ONC_EXPORT extern const char kHttp[]; | 422 ONC_EXPORT extern const char kHttp[]; |
| 421 ONC_EXPORT extern const char kHttps[]; | 423 ONC_EXPORT extern const char kHttps[]; |
| 422 ONC_EXPORT extern const char kManual[]; | 424 ONC_EXPORT extern const char kManual[]; |
| (...skipping 13 matching lines...) Expand all Loading... |
| 436 namespace device_state { | 438 namespace device_state { |
| 437 ONC_EXPORT extern const char kUninitialized[]; | 439 ONC_EXPORT extern const char kUninitialized[]; |
| 438 ONC_EXPORT extern const char kDisabled[]; | 440 ONC_EXPORT extern const char kDisabled[]; |
| 439 ONC_EXPORT extern const char kEnabling[]; | 441 ONC_EXPORT extern const char kEnabling[]; |
| 440 ONC_EXPORT extern const char kEnabled[]; | 442 ONC_EXPORT extern const char kEnabled[]; |
| 441 } // device_state | 443 } // device_state |
| 442 | 444 |
| 443 } // namespace onc | 445 } // namespace onc |
| 444 | 446 |
| 445 #endif // COMPONENTS_ONC_ONC_CONSTANTS_H_ | 447 #endif // COMPONENTS_ONC_ONC_CONSTANTS_H_ |
| OLD | NEW |