| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 | 9 |
| 10 #include "build/build_config.h" | 10 #include "build/build_config.h" |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 extern const wchar_t kLanguageMozcNumpadCharacterForm[]; | 120 extern const wchar_t kLanguageMozcNumpadCharacterForm[]; |
| 121 extern const wchar_t kLanguageMozcIncognitoMode[]; | 121 extern const wchar_t kLanguageMozcIncognitoMode[]; |
| 122 extern const wchar_t kLanguageMozcUseAutoImeTurnOff[]; | 122 extern const wchar_t kLanguageMozcUseAutoImeTurnOff[]; |
| 123 extern const wchar_t kLanguageMozcUseDateConversion[]; | 123 extern const wchar_t kLanguageMozcUseDateConversion[]; |
| 124 extern const wchar_t kLanguageMozcUseSingleKanjiConversion[]; | 124 extern const wchar_t kLanguageMozcUseSingleKanjiConversion[]; |
| 125 extern const wchar_t kLanguageMozcUseSymbolConversion[]; | 125 extern const wchar_t kLanguageMozcUseSymbolConversion[]; |
| 126 extern const wchar_t kLanguageMozcUseNumberConversion[]; | 126 extern const wchar_t kLanguageMozcUseNumberConversion[]; |
| 127 extern const wchar_t kLanguageMozcUseHistorySuggest[]; | 127 extern const wchar_t kLanguageMozcUseHistorySuggest[]; |
| 128 extern const wchar_t kLanguageMozcUseDictionarySuggest[]; | 128 extern const wchar_t kLanguageMozcUseDictionarySuggest[]; |
| 129 extern const wchar_t kLanguageMozcSuggestionsSize[]; | 129 extern const wchar_t kLanguageMozcSuggestionsSize[]; |
| 130 extern const wchar_t kLanguageXkbModifierRemap[]; |
| 130 extern const wchar_t kAccessibilityEnabled[]; | 131 extern const wchar_t kAccessibilityEnabled[]; |
| 131 extern const wchar_t kLabsAdvancedFilesystemEnabled[]; | 132 extern const wchar_t kLabsAdvancedFilesystemEnabled[]; |
| 132 extern const wchar_t kLabsMediaplayerEnabled[]; | 133 extern const wchar_t kLabsMediaplayerEnabled[]; |
| 133 #endif | 134 #endif |
| 134 extern const wchar_t kIpcDisabledMessages[]; | 135 extern const wchar_t kIpcDisabledMessages[]; |
| 135 extern const wchar_t kShowHomeButton[]; | 136 extern const wchar_t kShowHomeButton[]; |
| 136 extern const wchar_t kShowPageOptionsButtons[]; | 137 extern const wchar_t kShowPageOptionsButtons[]; |
| 137 extern const wchar_t kRecentlySelectedEncoding[]; | 138 extern const wchar_t kRecentlySelectedEncoding[]; |
| 138 extern const wchar_t kDeleteBrowsingHistory[]; | 139 extern const wchar_t kDeleteBrowsingHistory[]; |
| 139 extern const wchar_t kDeleteDownloadHistory[]; | 140 extern const wchar_t kDeleteDownloadHistory[]; |
| (...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 344 extern const wchar_t kProxyAutoDetect[]; | 345 extern const wchar_t kProxyAutoDetect[]; |
| 345 extern const wchar_t kProxyServer[]; | 346 extern const wchar_t kProxyServer[]; |
| 346 extern const wchar_t kProxyPacUrl[]; | 347 extern const wchar_t kProxyPacUrl[]; |
| 347 extern const wchar_t kProxyBypassList[]; | 348 extern const wchar_t kProxyBypassList[]; |
| 348 | 349 |
| 349 extern const wchar_t kRegisteredBackgroundContents[]; | 350 extern const wchar_t kRegisteredBackgroundContents[]; |
| 350 | 351 |
| 351 } // namespace prefs | 352 } // namespace prefs |
| 352 | 353 |
| 353 #endif // CHROME_COMMON_PREF_NAMES_H_ | 354 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |