| 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 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 174 extern const char kIpcDisabledMessages[]; | 174 extern const char kIpcDisabledMessages[]; |
| 175 extern const char kShowHomeButton[]; | 175 extern const char kShowHomeButton[]; |
| 176 extern const char kRecentlySelectedEncoding[]; | 176 extern const char kRecentlySelectedEncoding[]; |
| 177 extern const char kDeleteBrowsingHistory[]; | 177 extern const char kDeleteBrowsingHistory[]; |
| 178 extern const char kDeleteDownloadHistory[]; | 178 extern const char kDeleteDownloadHistory[]; |
| 179 extern const char kDeleteCache[]; | 179 extern const char kDeleteCache[]; |
| 180 extern const char kDeleteCookies[]; | 180 extern const char kDeleteCookies[]; |
| 181 extern const char kDeletePasswords[]; | 181 extern const char kDeletePasswords[]; |
| 182 extern const char kDeleteFormData[]; | 182 extern const char kDeleteFormData[]; |
| 183 extern const char kEnableSpellCheck[]; | 183 extern const char kEnableSpellCheck[]; |
| 184 extern const char kSpeechInputCensorResults[]; |
| 184 extern const char kEnabledLabsExperiments[]; | 185 extern const char kEnabledLabsExperiments[]; |
| 185 extern const char kEnableAutoSpellCorrect[]; | 186 extern const char kEnableAutoSpellCorrect[]; |
| 186 extern const char kSavingBrowserHistoryDisabled[]; | 187 extern const char kSavingBrowserHistoryDisabled[]; |
| 187 extern const char kDeleteTimePeriod[]; | 188 extern const char kDeleteTimePeriod[]; |
| 188 extern const char kPrintingEnabled[]; | 189 extern const char kPrintingEnabled[]; |
| 189 #if defined(TOOLKIT_USES_GTK) | 190 #if defined(TOOLKIT_USES_GTK) |
| 190 extern const char kUsesSystemTheme[]; | 191 extern const char kUsesSystemTheme[]; |
| 191 #endif | 192 #endif |
| 192 extern const char kCurrentThemePackFilename[]; | 193 extern const char kCurrentThemePackFilename[]; |
| 193 extern const char kCurrentThemeID[]; | 194 extern const char kCurrentThemeID[]; |
| (...skipping 321 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 515 extern const char kCustomHandlersEnabled[]; | 516 extern const char kCustomHandlersEnabled[]; |
| 516 | 517 |
| 517 extern const char kUserCreatedLoginItem[]; | 518 extern const char kUserCreatedLoginItem[]; |
| 518 extern const char kBackgroundModeEnabled[]; | 519 extern const char kBackgroundModeEnabled[]; |
| 519 | 520 |
| 520 extern const char kDevicePolicyRefreshRate[]; | 521 extern const char kDevicePolicyRefreshRate[]; |
| 521 extern const char kUserPolicyRefreshRate[]; | 522 extern const char kUserPolicyRefreshRate[]; |
| 522 } // namespace prefs | 523 } // namespace prefs |
| 523 | 524 |
| 524 #endif // CHROME_COMMON_PREF_NAMES_H_ | 525 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |