Chromium Code Reviews| 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[]; | 253 extern const char kSpeechRecognitionFilterProfanities[]; |
|
hans
2012/03/05 13:26:33
hmm, this list looks like it's semi-sorted, so may
Primiano Tucci (use gerrit)
2012/03/05 17:37:52
Done.
| |
| 254 extern const char kSpeechInputTrayNotificationShown[]; | 254 extern const char kSpeechInputTrayNotificationShown[]; |
| 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[]; |
| (...skipping 399 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 663 | 663 |
| 664 #if defined(USE_AURA) | 664 #if defined(USE_AURA) |
| 665 extern const char kPinnedLauncherApps[]; | 665 extern const char kPinnedLauncherApps[]; |
| 666 #endif | 666 #endif |
| 667 | 667 |
| 668 extern const char kInManagedMode[]; | 668 extern const char kInManagedMode[]; |
| 669 | 669 |
| 670 } // namespace prefs | 670 } // namespace prefs |
| 671 | 671 |
| 672 #endif // CHROME_COMMON_PREF_NAMES_H_ | 672 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |