| 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 284 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 295 extern const char kDeletePasswords[]; | 295 extern const char kDeletePasswords[]; |
| 296 extern const char kDeleteFormData[]; | 296 extern const char kDeleteFormData[]; |
| 297 extern const char kDeleteHostedAppsData[]; | 297 extern const char kDeleteHostedAppsData[]; |
| 298 extern const char kDeauthorizeContentLicenses[]; | 298 extern const char kDeauthorizeContentLicenses[]; |
| 299 extern const char kEnableSpellCheck[]; | 299 extern const char kEnableSpellCheck[]; |
| 300 extern const char kSpeechRecognitionFilterProfanities[]; | 300 extern const char kSpeechRecognitionFilterProfanities[]; |
| 301 extern const char kSpeechRecognitionTrayNotificationShownContexts[]; | 301 extern const char kSpeechRecognitionTrayNotificationShownContexts[]; |
| 302 extern const char kEnabledLabsExperiments[]; | 302 extern const char kEnabledLabsExperiments[]; |
| 303 extern const char kEnableAutoSpellCorrect[]; | 303 extern const char kEnableAutoSpellCorrect[]; |
| 304 extern const char kSavingBrowserHistoryDisabled[]; | 304 extern const char kSavingBrowserHistoryDisabled[]; |
| 305 extern const char kForceSafeSearch[]; |
| 305 extern const char kDeleteTimePeriod[]; | 306 extern const char kDeleteTimePeriod[]; |
| 306 #if defined(TOOLKIT_GTK) | 307 #if defined(TOOLKIT_GTK) |
| 307 extern const char kUsesSystemTheme[]; | 308 extern const char kUsesSystemTheme[]; |
| 308 #endif | 309 #endif |
| 309 extern const char kCurrentThemePackFilename[]; | 310 extern const char kCurrentThemePackFilename[]; |
| 310 extern const char kCurrentThemeID[]; | 311 extern const char kCurrentThemeID[]; |
| 311 extern const char kCurrentThemeImages[]; | 312 extern const char kCurrentThemeImages[]; |
| 312 extern const char kCurrentThemeColors[]; | 313 extern const char kCurrentThemeColors[]; |
| 313 extern const char kCurrentThemeTints[]; | 314 extern const char kCurrentThemeTints[]; |
| 314 extern const char kCurrentThemeDisplayProperties[]; | 315 extern const char kCurrentThemeDisplayProperties[]; |
| (...skipping 466 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 781 extern const char kInManagedMode[]; | 782 extern const char kInManagedMode[]; |
| 782 | 783 |
| 783 extern const char kNetworkProfileWarningsLeft[]; | 784 extern const char kNetworkProfileWarningsLeft[]; |
| 784 extern const char kNetworkProfileLastWarningTime[]; | 785 extern const char kNetworkProfileLastWarningTime[]; |
| 785 | 786 |
| 786 extern const char kLastPolicyStatisticsUpdate[]; | 787 extern const char kLastPolicyStatisticsUpdate[]; |
| 787 | 788 |
| 788 } // namespace prefs | 789 } // namespace prefs |
| 789 | 790 |
| 790 #endif // CHROME_COMMON_PREF_NAMES_H_ | 791 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |