| 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 333 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 344 extern const char kTLS1Enabled[]; | 344 extern const char kTLS1Enabled[]; |
| 345 extern const char kCipherSuiteBlacklist[]; | 345 extern const char kCipherSuiteBlacklist[]; |
| 346 extern const char kEnableOriginBoundCerts[]; | 346 extern const char kEnableOriginBoundCerts[]; |
| 347 extern const char kDisableSSLRecordSplitting[]; | 347 extern const char kDisableSSLRecordSplitting[]; |
| 348 extern const char kEnableMemoryInfo[]; | 348 extern const char kEnableMemoryInfo[]; |
| 349 | 349 |
| 350 extern const char kMetricsClientID[]; | 350 extern const char kMetricsClientID[]; |
| 351 extern const char kMetricsSessionID[]; | 351 extern const char kMetricsSessionID[]; |
| 352 extern const char kMetricsClientIDTimestamp[]; | 352 extern const char kMetricsClientIDTimestamp[]; |
| 353 extern const char kMetricsReportingEnabled[]; | 353 extern const char kMetricsReportingEnabled[]; |
| 354 extern const char kMetricsInitialLogs[]; | 354 extern const char kMetricsInitialLogsXml[]; |
| 355 extern const char kMetricsOngoingLogs[]; | 355 extern const char kMetricsInitialLogsProto[]; |
| 356 extern const char kMetricsOngoingLogsXml[]; |
| 357 extern const char kMetricsOngoingLogsProto[]; |
| 356 | 358 |
| 357 extern const char kProfileLastUsed[]; | 359 extern const char kProfileLastUsed[]; |
| 358 extern const char kProfilesLastActive[]; | 360 extern const char kProfilesLastActive[]; |
| 359 extern const char kProfilesNumCreated[]; | 361 extern const char kProfilesNumCreated[]; |
| 360 extern const char kProfileInfoCache[]; | 362 extern const char kProfileInfoCache[]; |
| 361 | 363 |
| 362 extern const char kProfileMetrics[]; | 364 extern const char kProfileMetrics[]; |
| 363 extern const char kProfilePrefix[]; | 365 extern const char kProfilePrefix[]; |
| 364 | 366 |
| 365 extern const char kStabilityExitedCleanly[]; | 367 extern const char kStabilityExitedCleanly[]; |
| (...skipping 295 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 661 | 663 |
| 662 #if defined(USE_AURA) | 664 #if defined(USE_AURA) |
| 663 extern const char kPinnedLauncherApps[]; | 665 extern const char kPinnedLauncherApps[]; |
| 664 #endif | 666 #endif |
| 665 | 667 |
| 666 extern const char kInManagedMode[]; | 668 extern const char kInManagedMode[]; |
| 667 | 669 |
| 668 } // namespace prefs | 670 } // namespace prefs |
| 669 | 671 |
| 670 #endif // CHROME_COMMON_PREF_NAMES_H_ | 672 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |