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 #pragma once | 9 #pragma once |
10 | 10 |
(...skipping 331 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
342 extern const char kTLS1Enabled[]; | 342 extern const char kTLS1Enabled[]; |
343 extern const char kCipherSuiteBlacklist[]; | 343 extern const char kCipherSuiteBlacklist[]; |
344 extern const char kEnableOriginBoundCerts[]; | 344 extern const char kEnableOriginBoundCerts[]; |
345 extern const char kDisableSSLRecordSplitting[]; | 345 extern const char kDisableSSLRecordSplitting[]; |
346 extern const char kEnableMemoryInfo[]; | 346 extern const char kEnableMemoryInfo[]; |
347 | 347 |
348 extern const char kMetricsClientID[]; | 348 extern const char kMetricsClientID[]; |
349 extern const char kMetricsSessionID[]; | 349 extern const char kMetricsSessionID[]; |
350 extern const char kMetricsClientIDTimestamp[]; | 350 extern const char kMetricsClientIDTimestamp[]; |
351 extern const char kMetricsReportingEnabled[]; | 351 extern const char kMetricsReportingEnabled[]; |
352 extern const char kMetricsInitialLogs[]; | 352 extern const char kMetricsInitialLogsXml[]; |
353 extern const char kMetricsOngoingLogs[]; | 353 extern const char kMetricsInitialLogsProto[]; |
| 354 extern const char kMetricsOngoingLogsXml[]; |
| 355 extern const char kMetricsOngoingLogsProto[]; |
354 | 356 |
355 extern const char kProfileLastUsed[]; | 357 extern const char kProfileLastUsed[]; |
356 extern const char kProfilesLastActive[]; | 358 extern const char kProfilesLastActive[]; |
357 extern const char kProfilesNumCreated[]; | 359 extern const char kProfilesNumCreated[]; |
358 extern const char kProfileInfoCache[]; | 360 extern const char kProfileInfoCache[]; |
359 | 361 |
360 extern const char kProfileMetrics[]; | 362 extern const char kProfileMetrics[]; |
361 extern const char kProfilePrefix[]; | 363 extern const char kProfilePrefix[]; |
362 | 364 |
363 extern const char kStabilityExitedCleanly[]; | 365 extern const char kStabilityExitedCleanly[]; |
(...skipping 290 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
654 extern const char kRecoveryComponentVersion[]; | 656 extern const char kRecoveryComponentVersion[]; |
655 extern const char kComponentUpdaterState[]; | 657 extern const char kComponentUpdaterState[]; |
656 | 658 |
657 extern const char kRestoreSessionStateDialogShown[]; | 659 extern const char kRestoreSessionStateDialogShown[]; |
658 | 660 |
659 extern const char kWebIntentsEnabled[]; | 661 extern const char kWebIntentsEnabled[]; |
660 | 662 |
661 } // namespace prefs | 663 } // namespace prefs |
662 | 664 |
663 #endif // CHROME_COMMON_PREF_NAMES_H_ | 665 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |