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[]; | |
229 extern const char kEnabledLabsExperiments[]; | 228 extern const char kEnabledLabsExperiments[]; |
230 extern const char kEnableAutoSpellCorrect[]; | 229 extern const char kEnableAutoSpellCorrect[]; |
231 extern const char kSavingBrowserHistoryDisabled[]; | 230 extern const char kSavingBrowserHistoryDisabled[]; |
232 extern const char kDeleteTimePeriod[]; | 231 extern const char kDeleteTimePeriod[]; |
233 extern const char kPrintingEnabled[]; | 232 extern const char kPrintingEnabled[]; |
234 #if defined(GOOGLE_CHROME_BUILD) | 233 #if defined(GOOGLE_CHROME_BUILD) |
235 extern const char kPrintingPrintPreviewEnabledOnce[]; | 234 extern const char kPrintingPrintPreviewEnabledOnce[]; |
236 #endif | 235 #endif |
237 #if defined(TOOLKIT_USES_GTK) | 236 #if defined(TOOLKIT_USES_GTK) |
238 extern const char kUsesSystemTheme[]; | 237 extern const char kUsesSystemTheme[]; |
(...skipping 368 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
607 | 606 |
608 extern const char kDevicePolicyRefreshRate[]; | 607 extern const char kDevicePolicyRefreshRate[]; |
609 extern const char kUserPolicyRefreshRate[]; | 608 extern const char kUserPolicyRefreshRate[]; |
610 | 609 |
611 extern const char kRecoveryComponentVersion[]; | 610 extern const char kRecoveryComponentVersion[]; |
612 extern const char kComponentUpdaterState[]; | 611 extern const char kComponentUpdaterState[]; |
613 | 612 |
614 } // namespace prefs | 613 } // namespace prefs |
615 | 614 |
616 #endif // CHROME_COMMON_PREF_NAMES_H_ | 615 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |