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 // Constants for the names of various preferences, for easier changing. | 5 // Constants for the names of various preferences, for easier changing. |
6 | 6 |
7 #ifndef CHROME_COMMON_PREF_NAMES_H_ | 7 #ifndef CHROME_COMMON_PREF_NAMES_H_ |
8 #define CHROME_COMMON_PREF_NAMES_H_ | 8 #define CHROME_COMMON_PREF_NAMES_H_ |
9 | 9 |
10 #include <stddef.h> | 10 #include <stddef.h> |
(...skipping 418 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
429 extern const char kSSLVersionMax[]; | 429 extern const char kSSLVersionMax[]; |
430 extern const char kCipherSuiteBlacklist[]; | 430 extern const char kCipherSuiteBlacklist[]; |
431 extern const char kEnableOriginBoundCerts[]; | 431 extern const char kEnableOriginBoundCerts[]; |
432 extern const char kDisableSSLRecordSplitting[]; | 432 extern const char kDisableSSLRecordSplitting[]; |
433 extern const char kEnableMemoryInfo[]; | 433 extern const char kEnableMemoryInfo[]; |
434 | 434 |
435 extern const char kGLVendorString[]; | 435 extern const char kGLVendorString[]; |
436 extern const char kGLRendererString[]; | 436 extern const char kGLRendererString[]; |
437 extern const char kGLVersionString[]; | 437 extern const char kGLVersionString[]; |
438 | 438 |
| 439 extern const char kEulaAccepted[]; |
| 440 |
439 extern const char kMetricsClientID[]; | 441 extern const char kMetricsClientID[]; |
440 extern const char kMetricsSessionID[]; | 442 extern const char kMetricsSessionID[]; |
441 extern const char kMetricsLowEntropySource[]; | 443 extern const char kMetricsLowEntropySource[]; |
442 extern const char kMetricsClientIDTimestamp[]; | 444 extern const char kMetricsClientIDTimestamp[]; |
443 extern const char kMetricsReportingEnabled[]; | 445 extern const char kMetricsReportingEnabled[]; |
444 extern const char kMetricsInitialLogsXml[]; | 446 extern const char kMetricsInitialLogsXml[]; |
445 extern const char kMetricsInitialLogsProto[]; | 447 extern const char kMetricsInitialLogsProto[]; |
446 extern const char kMetricsOngoingLogsXml[]; | 448 extern const char kMetricsOngoingLogsXml[]; |
447 extern const char kMetricsOngoingLogsProto[]; | 449 extern const char kMetricsOngoingLogsProto[]; |
448 | 450 |
(...skipping 438 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
887 extern const char kAppListProfile[]; | 889 extern const char kAppListProfile[]; |
888 | 890 |
889 extern const char kLastAppListLaunchPing[]; | 891 extern const char kLastAppListLaunchPing[]; |
890 extern const char kAppListLaunchCount[]; | 892 extern const char kAppListLaunchCount[]; |
891 extern const char kLastAppListAppLaunchPing[]; | 893 extern const char kLastAppListAppLaunchPing[]; |
892 extern const char kAppListAppLaunchCount[]; | 894 extern const char kAppListAppLaunchCount[]; |
893 | 895 |
894 } // namespace prefs | 896 } // namespace prefs |
895 | 897 |
896 #endif // CHROME_COMMON_PREF_NAMES_H_ | 898 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |