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 479 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
490 extern const char kAllowFileSelectionDialogs[]; | 490 extern const char kAllowFileSelectionDialogs[]; |
491 extern const char kDefaultTasksByMimeType[]; | 491 extern const char kDefaultTasksByMimeType[]; |
492 extern const char kDefaultTasksBySuffix[]; | 492 extern const char kDefaultTasksBySuffix[]; |
493 | 493 |
494 extern const char kSelectFileLastDirectory[]; | 494 extern const char kSelectFileLastDirectory[]; |
495 | 495 |
496 extern const char kHungPluginDetectFrequency[]; | 496 extern const char kHungPluginDetectFrequency[]; |
497 extern const char kPluginMessageResponseTimeout[]; | 497 extern const char kPluginMessageResponseTimeout[]; |
498 | 498 |
499 extern const char kSpellCheckDictionary[]; | 499 extern const char kSpellCheckDictionary[]; |
| 500 extern const char kSpellCheckDictionaries[]; |
500 extern const char kSpellCheckUseSpellingService[]; | 501 extern const char kSpellCheckUseSpellingService[]; |
501 | 502 |
502 extern const char kExcludedSchemes[]; | 503 extern const char kExcludedSchemes[]; |
503 | 504 |
504 extern const char kSafeBrowsingClientKey[]; | 505 extern const char kSafeBrowsingClientKey[]; |
505 extern const char kSafeBrowsingWrappedKey[]; | 506 extern const char kSafeBrowsingWrappedKey[]; |
506 | 507 |
507 extern const char kOptionsWindowLastTabIndex[]; | 508 extern const char kOptionsWindowLastTabIndex[]; |
508 extern const char kContentSettingsWindowLastTabIndex[]; | 509 extern const char kContentSettingsWindowLastTabIndex[]; |
509 extern const char kCertificateManagerWindowLastTabIndex[]; | 510 extern const char kCertificateManagerWindowLastTabIndex[]; |
(...skipping 305 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
815 | 816 |
816 extern const char kQuickCheckEnabled[]; | 817 extern const char kQuickCheckEnabled[]; |
817 extern const char kBrowserGuestModeEnabled[]; | 818 extern const char kBrowserGuestModeEnabled[]; |
818 extern const char kBrowserAddPersonEnabled[]; | 819 extern const char kBrowserAddPersonEnabled[]; |
819 | 820 |
820 extern const char kEasyUnlockHardlockState[]; | 821 extern const char kEasyUnlockHardlockState[]; |
821 | 822 |
822 } // namespace prefs | 823 } // namespace prefs |
823 | 824 |
824 #endif // CHROME_COMMON_PREF_NAMES_H_ | 825 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |