| 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 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 extern const wchar_t kLanguageChewingForceLowercaseEnglish[]; | 84 extern const wchar_t kLanguageChewingForceLowercaseEnglish[]; |
| 85 extern const wchar_t kLanguageChewingPlainZhuyin[]; | 85 extern const wchar_t kLanguageChewingPlainZhuyin[]; |
| 86 extern const wchar_t kLanguageChewingPhraseChoiceRearward[]; | 86 extern const wchar_t kLanguageChewingPhraseChoiceRearward[]; |
| 87 extern const wchar_t kLanguageChewingSpaceAsSelection[]; | 87 extern const wchar_t kLanguageChewingSpaceAsSelection[]; |
| 88 extern const wchar_t kLanguageChewingMaxChiSymbolLen[]; | 88 extern const wchar_t kLanguageChewingMaxChiSymbolLen[]; |
| 89 extern const wchar_t kLanguageChewingCandPerPage[]; | 89 extern const wchar_t kLanguageChewingCandPerPage[]; |
| 90 extern const wchar_t kLanguageChewingKeyboardType[]; | 90 extern const wchar_t kLanguageChewingKeyboardType[]; |
| 91 extern const wchar_t kLanguageChewingSelKeys[]; | 91 extern const wchar_t kLanguageChewingSelKeys[]; |
| 92 extern const wchar_t kLanguageChewingHsuSelKeyType[]; | 92 extern const wchar_t kLanguageChewingHsuSelKeyType[]; |
| 93 extern const wchar_t kLanguageHangulKeyboard[]; | 93 extern const wchar_t kLanguageHangulKeyboard[]; |
| 94 extern const wchar_t kLanguageHangulHanjaKeys[]; |
| 94 extern const wchar_t kLanguagePinyinCorrectPinyin[]; | 95 extern const wchar_t kLanguagePinyinCorrectPinyin[]; |
| 95 extern const wchar_t kLanguagePinyinFuzzyPinyin[]; | 96 extern const wchar_t kLanguagePinyinFuzzyPinyin[]; |
| 96 extern const wchar_t kLanguagePinyinLookupTablePageSize[]; | 97 extern const wchar_t kLanguagePinyinLookupTablePageSize[]; |
| 97 extern const wchar_t kLanguagePinyinShiftSelectCandidate[]; | 98 extern const wchar_t kLanguagePinyinShiftSelectCandidate[]; |
| 98 extern const wchar_t kLanguagePinyinMinusEqualPage[]; | 99 extern const wchar_t kLanguagePinyinMinusEqualPage[]; |
| 99 extern const wchar_t kLanguagePinyinCommaPeriodPage[]; | 100 extern const wchar_t kLanguagePinyinCommaPeriodPage[]; |
| 100 extern const wchar_t kLanguagePinyinAutoCommit[]; | 101 extern const wchar_t kLanguagePinyinAutoCommit[]; |
| 101 extern const wchar_t kLanguagePinyinDoublePinyin[]; | 102 extern const wchar_t kLanguagePinyinDoublePinyin[]; |
| 102 extern const wchar_t kLanguagePinyinDoublePinyinSchema[]; | 103 extern const wchar_t kLanguagePinyinDoublePinyinSchema[]; |
| 103 extern const wchar_t kLanguagePinyinInitChinese[]; | 104 extern const wchar_t kLanguagePinyinInitChinese[]; |
| (...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 338 extern const wchar_t kProxyAutoDetect[]; | 339 extern const wchar_t kProxyAutoDetect[]; |
| 339 extern const wchar_t kProxyServer[]; | 340 extern const wchar_t kProxyServer[]; |
| 340 extern const wchar_t kProxyPacUrl[]; | 341 extern const wchar_t kProxyPacUrl[]; |
| 341 extern const wchar_t kProxyBypassList[]; | 342 extern const wchar_t kProxyBypassList[]; |
| 342 | 343 |
| 343 extern const wchar_t kRegisteredBackgroundContents[]; | 344 extern const wchar_t kRegisteredBackgroundContents[]; |
| 344 | 345 |
| 345 } // namespace prefs | 346 } // namespace prefs |
| 346 | 347 |
| 347 #endif // CHROME_COMMON_PREF_NAMES_H_ | 348 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |