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 282 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
293 extern const char kDeletePasswords[]; | 293 extern const char kDeletePasswords[]; |
294 extern const char kDeleteFormData[]; | 294 extern const char kDeleteFormData[]; |
295 extern const char kDeleteHostedAppsData[]; | 295 extern const char kDeleteHostedAppsData[]; |
296 extern const char kDeauthorizeContentLicenses[]; | 296 extern const char kDeauthorizeContentLicenses[]; |
297 extern const char kEnableSpellCheck[]; | 297 extern const char kEnableSpellCheck[]; |
298 extern const char kSpeechRecognitionFilterProfanities[]; | 298 extern const char kSpeechRecognitionFilterProfanities[]; |
299 extern const char kSpeechRecognitionTrayNotificationShownContexts[]; | 299 extern const char kSpeechRecognitionTrayNotificationShownContexts[]; |
300 extern const char kEnabledLabsExperiments[]; | 300 extern const char kEnabledLabsExperiments[]; |
301 extern const char kEnableAutoSpellCorrect[]; | 301 extern const char kEnableAutoSpellCorrect[]; |
302 extern const char kSavingBrowserHistoryDisabled[]; | 302 extern const char kSavingBrowserHistoryDisabled[]; |
| 303 extern const char kForceSafeSearch[]; |
303 extern const char kDeleteTimePeriod[]; | 304 extern const char kDeleteTimePeriod[]; |
304 #if defined(TOOLKIT_GTK) | 305 #if defined(TOOLKIT_GTK) |
305 extern const char kUsesSystemTheme[]; | 306 extern const char kUsesSystemTheme[]; |
306 #endif | 307 #endif |
307 extern const char kCurrentThemePackFilename[]; | 308 extern const char kCurrentThemePackFilename[]; |
308 extern const char kCurrentThemeID[]; | 309 extern const char kCurrentThemeID[]; |
309 extern const char kCurrentThemeImages[]; | 310 extern const char kCurrentThemeImages[]; |
310 extern const char kCurrentThemeColors[]; | 311 extern const char kCurrentThemeColors[]; |
311 extern const char kCurrentThemeTints[]; | 312 extern const char kCurrentThemeTints[]; |
312 extern const char kCurrentThemeDisplayProperties[]; | 313 extern const char kCurrentThemeDisplayProperties[]; |
(...skipping 455 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
768 extern const char kInManagedMode[]; | 769 extern const char kInManagedMode[]; |
769 | 770 |
770 extern const char kNetworkProfileWarningsLeft[]; | 771 extern const char kNetworkProfileWarningsLeft[]; |
771 extern const char kNetworkProfileLastWarningTime[]; | 772 extern const char kNetworkProfileLastWarningTime[]; |
772 | 773 |
773 extern const char kLastPolicyStatisticsUpdate[]; | 774 extern const char kLastPolicyStatisticsUpdate[]; |
774 | 775 |
775 } // namespace prefs | 776 } // namespace prefs |
776 | 777 |
777 #endif // CHROME_COMMON_PREF_NAMES_H_ | 778 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |