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 283 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
294 extern const char kShowHomeButton[]; | 294 extern const char kShowHomeButton[]; |
295 extern const char kRecentlySelectedEncoding[]; | 295 extern const char kRecentlySelectedEncoding[]; |
296 extern const char kDeleteBrowsingHistory[]; | 296 extern const char kDeleteBrowsingHistory[]; |
297 extern const char kDeleteDownloadHistory[]; | 297 extern const char kDeleteDownloadHistory[]; |
298 extern const char kDeleteCache[]; | 298 extern const char kDeleteCache[]; |
299 extern const char kDeleteCookies[]; | 299 extern const char kDeleteCookies[]; |
300 extern const char kDeletePasswords[]; | 300 extern const char kDeletePasswords[]; |
301 extern const char kDeleteFormData[]; | 301 extern const char kDeleteFormData[]; |
302 extern const char kDeleteHostedAppsData[]; | 302 extern const char kDeleteHostedAppsData[]; |
303 extern const char kDeauthorizeContentLicenses[]; | 303 extern const char kDeauthorizeContentLicenses[]; |
304 extern const char kChildLockDisabled[]; | |
Pam (message me for reviews)
2013/01/07 14:51:49
Please use more general terminology.
| |
304 extern const char kEnableContinuousSpellcheck[]; | 305 extern const char kEnableContinuousSpellcheck[]; |
305 extern const char kSpeechRecognitionFilterProfanities[]; | 306 extern const char kSpeechRecognitionFilterProfanities[]; |
306 extern const char kSpeechRecognitionTrayNotificationShownContexts[]; | 307 extern const char kSpeechRecognitionTrayNotificationShownContexts[]; |
307 extern const char kEnabledLabsExperiments[]; | 308 extern const char kEnabledLabsExperiments[]; |
308 extern const char kEnableAutoSpellCorrect[]; | 309 extern const char kEnableAutoSpellCorrect[]; |
309 extern const char kSavingBrowserHistoryDisabled[]; | 310 extern const char kSavingBrowserHistoryDisabled[]; |
310 extern const char kForceSafeSearch[]; | 311 extern const char kForceSafeSearch[]; |
311 extern const char kDeleteTimePeriod[]; | 312 extern const char kDeleteTimePeriod[]; |
312 #if defined(TOOLKIT_GTK) | 313 #if defined(TOOLKIT_GTK) |
313 extern const char kUsesSystemTheme[]; | 314 extern const char kUsesSystemTheme[]; |
(...skipping 374 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
688 extern const char kManagedJavaScriptAllowedForUrls[]; | 689 extern const char kManagedJavaScriptAllowedForUrls[]; |
689 extern const char kManagedJavaScriptBlockedForUrls[]; | 690 extern const char kManagedJavaScriptBlockedForUrls[]; |
690 extern const char kManagedPluginsAllowedForUrls[]; | 691 extern const char kManagedPluginsAllowedForUrls[]; |
691 extern const char kManagedPluginsBlockedForUrls[]; | 692 extern const char kManagedPluginsBlockedForUrls[]; |
692 extern const char kManagedPopupsAllowedForUrls[]; | 693 extern const char kManagedPopupsAllowedForUrls[]; |
693 extern const char kManagedPopupsBlockedForUrls[]; | 694 extern const char kManagedPopupsBlockedForUrls[]; |
694 extern const char kManagedNotificationsAllowedForUrls[]; | 695 extern const char kManagedNotificationsAllowedForUrls[]; |
695 extern const char kManagedNotificationsBlockedForUrls[]; | 696 extern const char kManagedNotificationsBlockedForUrls[]; |
696 extern const char kManagedAutoSelectCertificateForUrls[]; | 697 extern const char kManagedAutoSelectCertificateForUrls[]; |
697 | 698 |
699 extern const char kManagedModeLocalPassphrase[]; | |
700 | |
698 extern const char kAudioCaptureAllowed[]; | 701 extern const char kAudioCaptureAllowed[]; |
699 extern const char kVideoCaptureAllowed[]; | 702 extern const char kVideoCaptureAllowed[]; |
700 | 703 |
701 #if defined(OS_CHROMEOS) | 704 #if defined(OS_CHROMEOS) |
702 extern const char kDeviceSettingsCache[]; | 705 extern const char kDeviceSettingsCache[]; |
703 extern const char kHardwareKeyboardLayout[]; | 706 extern const char kHardwareKeyboardLayout[]; |
704 extern const char kCarrierDealPromoShown[]; | 707 extern const char kCarrierDealPromoShown[]; |
705 extern const char kShouldAutoEnroll[]; | 708 extern const char kShouldAutoEnroll[]; |
706 extern const char kAutoEnrollmentPowerLimit[]; | 709 extern const char kAutoEnrollmentPowerLimit[]; |
707 extern const char kDeviceActivityTimes[]; | 710 extern const char kDeviceActivityTimes[]; |
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
814 extern const char kLastPolicyStatisticsUpdate[]; | 817 extern const char kLastPolicyStatisticsUpdate[]; |
815 | 818 |
816 #if defined(OS_CHROMEOS) | 819 #if defined(OS_CHROMEOS) |
817 extern const char kRLZBrand[]; | 820 extern const char kRLZBrand[]; |
818 extern const char kRLZDisabled[]; | 821 extern const char kRLZDisabled[]; |
819 #endif | 822 #endif |
820 | 823 |
821 } // namespace prefs | 824 } // namespace prefs |
822 | 825 |
823 #endif // CHROME_COMMON_PREF_NAMES_H_ | 826 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |