| 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 #pragma once | 9 #pragma once |
| 10 | 10 |
| (...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 243 extern const char kIpcDisabledMessages[]; | 243 extern const char kIpcDisabledMessages[]; |
| 244 extern const char kShowHomeButton[]; | 244 extern const char kShowHomeButton[]; |
| 245 extern const char kRecentlySelectedEncoding[]; | 245 extern const char kRecentlySelectedEncoding[]; |
| 246 extern const char kDeleteBrowsingHistory[]; | 246 extern const char kDeleteBrowsingHistory[]; |
| 247 extern const char kDeleteDownloadHistory[]; | 247 extern const char kDeleteDownloadHistory[]; |
| 248 extern const char kDeleteCache[]; | 248 extern const char kDeleteCache[]; |
| 249 extern const char kDeleteCookies[]; | 249 extern const char kDeleteCookies[]; |
| 250 extern const char kDeletePasswords[]; | 250 extern const char kDeletePasswords[]; |
| 251 extern const char kDeleteFormData[]; | 251 extern const char kDeleteFormData[]; |
| 252 extern const char kEnableSpellCheck[]; | 252 extern const char kEnableSpellCheck[]; |
| 253 extern const char kSpeechInputFilterProfanities[]; | |
| 254 extern const char kSpeechInputTrayNotificationShown[]; | 253 extern const char kSpeechInputTrayNotificationShown[]; |
| 254 extern const char kSpeechRecognitionFilterProfanities[]; |
| 255 extern const char kEnabledLabsExperiments[]; | 255 extern const char kEnabledLabsExperiments[]; |
| 256 extern const char kEnableAutoSpellCorrect[]; | 256 extern const char kEnableAutoSpellCorrect[]; |
| 257 extern const char kSavingBrowserHistoryDisabled[]; | 257 extern const char kSavingBrowserHistoryDisabled[]; |
| 258 extern const char kDeleteTimePeriod[]; | 258 extern const char kDeleteTimePeriod[]; |
| 259 #if defined(TOOLKIT_USES_GTK) | 259 #if defined(TOOLKIT_USES_GTK) |
| 260 extern const char kUsesSystemTheme[]; | 260 extern const char kUsesSystemTheme[]; |
| 261 #endif | 261 #endif |
| 262 extern const char kCurrentThemePackFilename[]; | 262 extern const char kCurrentThemePackFilename[]; |
| 263 extern const char kCurrentThemeID[]; | 263 extern const char kCurrentThemeID[]; |
| 264 extern const char kCurrentThemeImages[]; | 264 extern const char kCurrentThemeImages[]; |
| (...skipping 399 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 664 | 664 |
| 665 #if defined(USE_AURA) | 665 #if defined(USE_AURA) |
| 666 extern const char kPinnedLauncherApps[]; | 666 extern const char kPinnedLauncherApps[]; |
| 667 #endif | 667 #endif |
| 668 | 668 |
| 669 extern const char kInManagedMode[]; | 669 extern const char kInManagedMode[]; |
| 670 | 670 |
| 671 } // namespace prefs | 671 } // namespace prefs |
| 672 | 672 |
| 673 #endif // CHROME_COMMON_PREF_NAMES_H_ | 673 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |