| 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 323 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 334 extern const char kEnableContinuousSpellcheck[]; | 334 extern const char kEnableContinuousSpellcheck[]; |
| 335 extern const char kSpeechRecognitionFilterProfanities[]; | 335 extern const char kSpeechRecognitionFilterProfanities[]; |
| 336 extern const char kSpeechRecognitionTrayNotificationShownContexts[]; | 336 extern const char kSpeechRecognitionTrayNotificationShownContexts[]; |
| 337 extern const char kEnabledLabsExperiments[]; | 337 extern const char kEnabledLabsExperiments[]; |
| 338 extern const char kEnableAutoSpellCorrect[]; | 338 extern const char kEnableAutoSpellCorrect[]; |
| 339 extern const char kSavingBrowserHistoryDisabled[]; | 339 extern const char kSavingBrowserHistoryDisabled[]; |
| 340 extern const char kAllowDeletingBrowserHistory[]; | 340 extern const char kAllowDeletingBrowserHistory[]; |
| 341 extern const char kForceSafeSearch[]; | 341 extern const char kForceSafeSearch[]; |
| 342 extern const char kDeleteTimePeriod[]; | 342 extern const char kDeleteTimePeriod[]; |
| 343 extern const char kLastClearBrowsingDataTime[]; | 343 extern const char kLastClearBrowsingDataTime[]; |
| 344 #if defined(TOOLKIT_GTK) | 344 #if defined(OS_LINUX) && !defined(OS_CHROMEOS) |
| 345 extern const char kUsesSystemTheme[]; | 345 extern const char kUsesSystemTheme[]; |
| 346 #endif | 346 #endif |
| 347 extern const char kCurrentThemePackFilename[]; | 347 extern const char kCurrentThemePackFilename[]; |
| 348 extern const char kCurrentThemeID[]; | 348 extern const char kCurrentThemeID[]; |
| 349 extern const char kCurrentThemeImages[]; | 349 extern const char kCurrentThemeImages[]; |
| 350 extern const char kCurrentThemeColors[]; | 350 extern const char kCurrentThemeColors[]; |
| 351 extern const char kCurrentThemeTints[]; | 351 extern const char kCurrentThemeTints[]; |
| 352 extern const char kCurrentThemeDisplayProperties[]; | 352 extern const char kCurrentThemeDisplayProperties[]; |
| 353 extern const char kExtensionsUIDeveloperMode[]; | 353 extern const char kExtensionsUIDeveloperMode[]; |
| 354 extern const char kExtensionToolbarSize[]; | 354 extern const char kExtensionToolbarSize[]; |
| (...skipping 575 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 930 extern const char kAppListAppLaunchCount[]; | 930 extern const char kAppListAppLaunchCount[]; |
| 931 | 931 |
| 932 extern const char kModuleConflictBubbleShown[]; | 932 extern const char kModuleConflictBubbleShown[]; |
| 933 | 933 |
| 934 extern const char kDRMSalt[]; | 934 extern const char kDRMSalt[]; |
| 935 extern const char kEnableDRM[]; | 935 extern const char kEnableDRM[]; |
| 936 | 936 |
| 937 } // namespace prefs | 937 } // namespace prefs |
| 938 | 938 |
| 939 #endif // CHROME_COMMON_PREF_NAMES_H_ | 939 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |