OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
218 extern const char kShowHomeButton[]; | 218 extern const char kShowHomeButton[]; |
219 extern const char kRecentlySelectedEncoding[]; | 219 extern const char kRecentlySelectedEncoding[]; |
220 extern const char kDeleteBrowsingHistory[]; | 220 extern const char kDeleteBrowsingHistory[]; |
221 extern const char kDeleteDownloadHistory[]; | 221 extern const char kDeleteDownloadHistory[]; |
222 extern const char kDeleteCache[]; | 222 extern const char kDeleteCache[]; |
223 extern const char kDeleteCookies[]; | 223 extern const char kDeleteCookies[]; |
224 extern const char kDeletePasswords[]; | 224 extern const char kDeletePasswords[]; |
225 extern const char kDeleteFormData[]; | 225 extern const char kDeleteFormData[]; |
226 extern const char kEnableSpellCheck[]; | 226 extern const char kEnableSpellCheck[]; |
227 extern const char kSpeechInputFilterProfanities[]; | 227 extern const char kSpeechInputFilterProfanities[]; |
| 228 extern const char kSpeechInputTrayNotificationShown[]; |
228 extern const char kEnabledLabsExperiments[]; | 229 extern const char kEnabledLabsExperiments[]; |
229 extern const char kEnableAutoSpellCorrect[]; | 230 extern const char kEnableAutoSpellCorrect[]; |
230 extern const char kSavingBrowserHistoryDisabled[]; | 231 extern const char kSavingBrowserHistoryDisabled[]; |
231 extern const char kDeleteTimePeriod[]; | 232 extern const char kDeleteTimePeriod[]; |
232 extern const char kPrintingEnabled[]; | 233 extern const char kPrintingEnabled[]; |
233 #if defined(GOOGLE_CHROME_BUILD) | 234 #if defined(GOOGLE_CHROME_BUILD) |
234 extern const char kPrintingPrintPreviewEnabledOnce[]; | 235 extern const char kPrintingPrintPreviewEnabledOnce[]; |
235 #endif | 236 #endif |
236 #if defined(TOOLKIT_USES_GTK) | 237 #if defined(TOOLKIT_USES_GTK) |
237 extern const char kUsesSystemTheme[]; | 238 extern const char kUsesSystemTheme[]; |
(...skipping 367 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
605 | 606 |
606 extern const char kDevicePolicyRefreshRate[]; | 607 extern const char kDevicePolicyRefreshRate[]; |
607 extern const char kUserPolicyRefreshRate[]; | 608 extern const char kUserPolicyRefreshRate[]; |
608 | 609 |
609 extern const char kRecoveryComponentVersion[]; | 610 extern const char kRecoveryComponentVersion[]; |
610 extern const char kComponentUpdaterState[]; | 611 extern const char kComponentUpdaterState[]; |
611 | 612 |
612 } // namespace prefs | 613 } // namespace prefs |
613 | 614 |
614 #endif // CHROME_COMMON_PREF_NAMES_H_ | 615 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |