| 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 273 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 284 extern const char kDeleteFormData[]; | 284 extern const char kDeleteFormData[]; |
| 285 extern const char kDeleteHostedAppsData[]; | 285 extern const char kDeleteHostedAppsData[]; |
| 286 extern const char kDeauthorizeContentLicenses[]; | 286 extern const char kDeauthorizeContentLicenses[]; |
| 287 extern const char kEnableContinuousSpellcheck[]; | 287 extern const char kEnableContinuousSpellcheck[]; |
| 288 extern const char kSpeechRecognitionFilterProfanities[]; | 288 extern const char kSpeechRecognitionFilterProfanities[]; |
| 289 extern const char kSpeechRecognitionTrayNotificationShownContexts[]; | 289 extern const char kSpeechRecognitionTrayNotificationShownContexts[]; |
| 290 extern const char kEnabledLabsExperiments[]; | 290 extern const char kEnabledLabsExperiments[]; |
| 291 extern const char kEnableAutoSpellCorrect[]; | 291 extern const char kEnableAutoSpellCorrect[]; |
| 292 extern const char kSavingBrowserHistoryDisabled[]; | 292 extern const char kSavingBrowserHistoryDisabled[]; |
| 293 extern const char kAllowDeletingBrowserHistory[]; | 293 extern const char kAllowDeletingBrowserHistory[]; |
| 294 extern const char kForceSafeSearch[]; | |
| 295 extern const char kForceGoogleSafeSearch[]; | 294 extern const char kForceGoogleSafeSearch[]; |
| 296 extern const char kForceYouTubeSafetyMode[]; | 295 extern const char kForceYouTubeSafetyMode[]; |
| 297 extern const char kRecordHistory[]; | 296 extern const char kRecordHistory[]; |
| 298 extern const char kDeleteTimePeriod[]; | 297 extern const char kDeleteTimePeriod[]; |
| 299 extern const char kLastClearBrowsingDataTime[]; | 298 extern const char kLastClearBrowsingDataTime[]; |
| 300 #if defined(OS_LINUX) && !defined(OS_CHROMEOS) | 299 #if defined(OS_LINUX) && !defined(OS_CHROMEOS) |
| 301 extern const char kUsesSystemTheme[]; | 300 extern const char kUsesSystemTheme[]; |
| 302 #endif | 301 #endif |
| 303 extern const char kCurrentThemePackFilename[]; | 302 extern const char kCurrentThemePackFilename[]; |
| 304 extern const char kCurrentThemeID[]; | 303 extern const char kCurrentThemeID[]; |
| (...skipping 521 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 826 | 825 |
| 827 extern const char kRegisteredSupervisedUserWhitelists[]; | 826 extern const char kRegisteredSupervisedUserWhitelists[]; |
| 828 | 827 |
| 829 #if defined(ENABLE_EXTENSIONS) | 828 #if defined(ENABLE_EXTENSIONS) |
| 830 extern const char kAnimationPolicy[]; | 829 extern const char kAnimationPolicy[]; |
| 831 #endif | 830 #endif |
| 832 | 831 |
| 833 } // namespace prefs | 832 } // namespace prefs |
| 834 | 833 |
| 835 #endif // CHROME_COMMON_PREF_NAMES_H_ | 834 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |