| 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 294 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 305 extern const char kDeleteHostedAppsData[]; | 305 extern const char kDeleteHostedAppsData[]; |
| 306 extern const char kDeauthorizeContentLicenses[]; | 306 extern const char kDeauthorizeContentLicenses[]; |
| 307 extern const char kEnableContinuousSpellcheck[]; | 307 extern const char kEnableContinuousSpellcheck[]; |
| 308 extern const char kSpeechRecognitionFilterProfanities[]; | 308 extern const char kSpeechRecognitionFilterProfanities[]; |
| 309 extern const char kSpeechRecognitionTrayNotificationShownContexts[]; | 309 extern const char kSpeechRecognitionTrayNotificationShownContexts[]; |
| 310 extern const char kEnabledLabsExperiments[]; | 310 extern const char kEnabledLabsExperiments[]; |
| 311 extern const char kEnableAutoSpellCorrect[]; | 311 extern const char kEnableAutoSpellCorrect[]; |
| 312 extern const char kSavingBrowserHistoryDisabled[]; | 312 extern const char kSavingBrowserHistoryDisabled[]; |
| 313 extern const char kForceSafeSearch[]; | 313 extern const char kForceSafeSearch[]; |
| 314 extern const char kDeleteTimePeriod[]; | 314 extern const char kDeleteTimePeriod[]; |
| 315 extern const char kLastClearBrowsingDataTime[]; |
| 315 #if defined(TOOLKIT_GTK) | 316 #if defined(TOOLKIT_GTK) |
| 316 extern const char kUsesSystemTheme[]; | 317 extern const char kUsesSystemTheme[]; |
| 317 #endif | 318 #endif |
| 318 extern const char kCurrentThemePackFilename[]; | 319 extern const char kCurrentThemePackFilename[]; |
| 319 extern const char kCurrentThemeID[]; | 320 extern const char kCurrentThemeID[]; |
| 320 extern const char kCurrentThemeImages[]; | 321 extern const char kCurrentThemeImages[]; |
| 321 extern const char kCurrentThemeColors[]; | 322 extern const char kCurrentThemeColors[]; |
| 322 extern const char kCurrentThemeTints[]; | 323 extern const char kCurrentThemeTints[]; |
| 323 extern const char kCurrentThemeDisplayProperties[]; | 324 extern const char kCurrentThemeDisplayProperties[]; |
| 324 extern const char kExtensionsUIDeveloperMode[]; | 325 extern const char kExtensionsUIDeveloperMode[]; |
| (...skipping 493 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 818 extern const char kLastPolicyStatisticsUpdate[]; | 819 extern const char kLastPolicyStatisticsUpdate[]; |
| 819 | 820 |
| 820 #if defined(OS_CHROMEOS) | 821 #if defined(OS_CHROMEOS) |
| 821 extern const char kRLZBrand[]; | 822 extern const char kRLZBrand[]; |
| 822 extern const char kRLZDisabled[]; | 823 extern const char kRLZDisabled[]; |
| 823 #endif | 824 #endif |
| 824 | 825 |
| 825 } // namespace prefs | 826 } // namespace prefs |
| 826 | 827 |
| 827 #endif // CHROME_COMMON_PREF_NAMES_H_ | 828 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |