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 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
155 extern const char kLanguageMozcUseHistorySuggest[]; | 155 extern const char kLanguageMozcUseHistorySuggest[]; |
156 extern const char kLanguageMozcUseDictionarySuggest[]; | 156 extern const char kLanguageMozcUseDictionarySuggest[]; |
157 extern const char kLanguageMozcSuggestionsSize[]; | 157 extern const char kLanguageMozcSuggestionsSize[]; |
158 extern const char kLanguageXkbRemapSearchKeyTo[]; | 158 extern const char kLanguageXkbRemapSearchKeyTo[]; |
159 extern const char kLanguageXkbRemapControlKeyTo[]; | 159 extern const char kLanguageXkbRemapControlKeyTo[]; |
160 extern const char kLanguageXkbRemapAltKeyTo[]; | 160 extern const char kLanguageXkbRemapAltKeyTo[]; |
161 extern const char kLanguageXkbAutoRepeatEnabled[]; | 161 extern const char kLanguageXkbAutoRepeatEnabled[]; |
162 extern const char kLanguageXkbAutoRepeatDelay[]; | 162 extern const char kLanguageXkbAutoRepeatDelay[]; |
163 extern const char kLanguageXkbAutoRepeatInterval[]; | 163 extern const char kLanguageXkbAutoRepeatInterval[]; |
164 extern const char kAccessibilityEnabled[]; | 164 extern const char kAccessibilityEnabled[]; |
| 165 extern const char kAccessibilityChromeVoxVersion[]; |
165 extern const char kLabsAdvancedFilesystemEnabled[]; | 166 extern const char kLabsAdvancedFilesystemEnabled[]; |
166 extern const char kLabsMediaplayerEnabled[]; | 167 extern const char kLabsMediaplayerEnabled[]; |
167 extern const char kEnableScreenLock[]; | 168 extern const char kEnableScreenLock[]; |
168 extern const char kShowPlanNotifications[]; | 169 extern const char kShowPlanNotifications[]; |
169 #endif | 170 #endif |
170 extern const char kIpcDisabledMessages[]; | 171 extern const char kIpcDisabledMessages[]; |
171 extern const char kShowHomeButton[]; | 172 extern const char kShowHomeButton[]; |
172 extern const char kShowPageOptionsButtons[]; | 173 extern const char kShowPageOptionsButtons[]; |
173 extern const char kRecentlySelectedEncoding[]; | 174 extern const char kRecentlySelectedEncoding[]; |
174 extern const char kDeleteBrowsingHistory[]; | 175 extern const char kDeleteBrowsingHistory[]; |
(...skipping 263 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
438 extern const char kAuthNegotiateDelegateWhitelist[]; | 439 extern const char kAuthNegotiateDelegateWhitelist[]; |
439 extern const char kGSSAPILibraryName[]; | 440 extern const char kGSSAPILibraryName[]; |
440 | 441 |
441 extern const char kKnownBackgroundPages[]; | 442 extern const char kKnownBackgroundPages[]; |
442 | 443 |
443 extern const char kDisable3DAPIs[]; | 444 extern const char kDisable3DAPIs[]; |
444 | 445 |
445 } // namespace prefs | 446 } // namespace prefs |
446 | 447 |
447 #endif // CHROME_COMMON_PREF_NAMES_H_ | 448 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |