| 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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 extern const wchar_t kTimeZone[]; | 71 extern const wchar_t kTimeZone[]; |
| 72 extern const wchar_t kTapToClickEnabled[]; | 72 extern const wchar_t kTapToClickEnabled[]; |
| 73 extern const wchar_t kVertEdgeScrollEnabled[]; | 73 extern const wchar_t kVertEdgeScrollEnabled[]; |
| 74 extern const wchar_t kTouchpadSpeedFactor[]; | 74 extern const wchar_t kTouchpadSpeedFactor[]; |
| 75 extern const wchar_t kTouchpadSensitivity[]; | 75 extern const wchar_t kTouchpadSensitivity[]; |
| 76 extern const wchar_t kLanguageUseGlobalEngine[]; | 76 extern const wchar_t kLanguageUseGlobalEngine[]; |
| 77 extern const wchar_t kLanguageHotkeyNextEngine[]; | 77 extern const wchar_t kLanguageHotkeyNextEngine[]; |
| 78 extern const wchar_t kLanguageHotkeyTrigger[]; | 78 extern const wchar_t kLanguageHotkeyTrigger[]; |
| 79 extern const wchar_t kLanguagePreloadEngines[]; | 79 extern const wchar_t kLanguagePreloadEngines[]; |
| 80 extern const wchar_t kLanguageHangulKeyboard[]; | 80 extern const wchar_t kLanguageHangulKeyboard[]; |
| 81 extern const wchar_t kLanguagePinyinCorrectPinyin[]; |
| 82 extern const wchar_t kLanguagePinyinFuzzyPinyin[]; |
| 83 extern const wchar_t kLanguagePinyinLookupTablePageSize[]; |
| 84 extern const wchar_t kLanguagePinyinShiftSelectCandidate[]; |
| 85 extern const wchar_t kLanguagePinyinMinusEqualPage[]; |
| 86 extern const wchar_t kLanguagePinyinCommaPeriodPage[]; |
| 87 extern const wchar_t kLanguagePinyinAutoCommit[]; |
| 88 extern const wchar_t kLanguagePinyinDoublePinyin[]; |
| 89 extern const wchar_t kLanguagePinyinDoublePinyinSchema[]; |
| 90 extern const wchar_t kLanguagePinyinInitChinese[]; |
| 91 extern const wchar_t kLanguagePinyinInitFull[]; |
| 92 extern const wchar_t kLanguagePinyinInitFullPunct[]; |
| 93 extern const wchar_t kLanguagePinyinInitSimplifiedChinese[]; |
| 94 extern const wchar_t kLanguagePinyinTradCandidate[]; |
| 81 #endif | 95 #endif |
| 82 extern const wchar_t kIpcDisabledMessages[]; | 96 extern const wchar_t kIpcDisabledMessages[]; |
| 83 extern const wchar_t kShowHomeButton[]; | 97 extern const wchar_t kShowHomeButton[]; |
| 84 extern const wchar_t kShowPageOptionsButtons[]; | 98 extern const wchar_t kShowPageOptionsButtons[]; |
| 85 extern const wchar_t kRecentlySelectedEncoding[]; | 99 extern const wchar_t kRecentlySelectedEncoding[]; |
| 86 extern const wchar_t kDeleteBrowsingHistory[]; | 100 extern const wchar_t kDeleteBrowsingHistory[]; |
| 87 extern const wchar_t kDeleteDownloadHistory[]; | 101 extern const wchar_t kDeleteDownloadHistory[]; |
| 88 extern const wchar_t kDeleteCache[]; | 102 extern const wchar_t kDeleteCache[]; |
| 89 extern const wchar_t kDeleteCookies[]; | 103 extern const wchar_t kDeleteCookies[]; |
| 90 extern const wchar_t kDeletePasswords[]; | 104 extern const wchar_t kDeletePasswords[]; |
| (...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 278 | 292 |
| 279 extern const wchar_t kLoginDatabaseMigrated[]; | 293 extern const wchar_t kLoginDatabaseMigrated[]; |
| 280 | 294 |
| 281 extern const wchar_t kCloudPrintProxyId[]; | 295 extern const wchar_t kCloudPrintProxyId[]; |
| 282 extern const wchar_t kCloudPrintProxyName[]; | 296 extern const wchar_t kCloudPrintProxyName[]; |
| 283 extern const wchar_t kCloudPrintAuthToken[]; | 297 extern const wchar_t kCloudPrintAuthToken[]; |
| 284 | 298 |
| 285 } // namespace prefs | 299 } // namespace prefs |
| 286 | 300 |
| 287 #endif // CHROME_COMMON_PREF_NAMES_H_ | 301 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |