| 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 494 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 505 extern const char kAllowFileSelectionDialogs[]; | 505 extern const char kAllowFileSelectionDialogs[]; |
| 506 extern const char kDefaultTasksByMimeType[]; | 506 extern const char kDefaultTasksByMimeType[]; |
| 507 extern const char kDefaultTasksBySuffix[]; | 507 extern const char kDefaultTasksBySuffix[]; |
| 508 | 508 |
| 509 extern const char kSelectFileLastDirectory[]; | 509 extern const char kSelectFileLastDirectory[]; |
| 510 | 510 |
| 511 extern const char kHungPluginDetectFrequency[]; | 511 extern const char kHungPluginDetectFrequency[]; |
| 512 extern const char kPluginMessageResponseTimeout[]; | 512 extern const char kPluginMessageResponseTimeout[]; |
| 513 | 513 |
| 514 extern const char kSpellCheckDictionary[]; | 514 extern const char kSpellCheckDictionary[]; |
| 515 extern const char kSpellCheckDictionaries[]; |
| 515 extern const char kSpellCheckUseSpellingService[]; | 516 extern const char kSpellCheckUseSpellingService[]; |
| 516 | 517 |
| 517 extern const char kExcludedSchemes[]; | 518 extern const char kExcludedSchemes[]; |
| 518 | 519 |
| 519 extern const char kSafeBrowsingClientKey[]; | 520 extern const char kSafeBrowsingClientKey[]; |
| 520 extern const char kSafeBrowsingWrappedKey[]; | 521 extern const char kSafeBrowsingWrappedKey[]; |
| 521 | 522 |
| 522 extern const char kOptionsWindowLastTabIndex[]; | 523 extern const char kOptionsWindowLastTabIndex[]; |
| 523 extern const char kCertificateManagerWindowLastTabIndex[]; | 524 extern const char kCertificateManagerWindowLastTabIndex[]; |
| 524 extern const char kShowFirstRunBubbleOption[]; | 525 extern const char kShowFirstRunBubbleOption[]; |
| (...skipping 294 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 819 | 820 |
| 820 extern const char kRegisteredSupervisedUserWhitelists[]; | 821 extern const char kRegisteredSupervisedUserWhitelists[]; |
| 821 | 822 |
| 822 #if defined(ENABLE_EXTENSIONS) | 823 #if defined(ENABLE_EXTENSIONS) |
| 823 extern const char kAnimationPolicy[]; | 824 extern const char kAnimationPolicy[]; |
| 824 #endif | 825 #endif |
| 825 | 826 |
| 826 } // namespace prefs | 827 } // namespace prefs |
| 827 | 828 |
| 828 #endif // CHROME_COMMON_PREF_NAMES_H_ | 829 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |