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 #pragma once | 9 #pragma once |
10 | 10 |
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
134 extern const char kLanguageXkbRemapSearchKeyTo[]; | 134 extern const char kLanguageXkbRemapSearchKeyTo[]; |
135 extern const char kLanguageXkbRemapControlKeyTo[]; | 135 extern const char kLanguageXkbRemapControlKeyTo[]; |
136 extern const char kLanguageXkbRemapAltKeyTo[]; | 136 extern const char kLanguageXkbRemapAltKeyTo[]; |
137 extern const char kLanguageXkbAutoRepeatEnabled[]; | 137 extern const char kLanguageXkbAutoRepeatEnabled[]; |
138 extern const char kLanguageXkbAutoRepeatDelay[]; | 138 extern const char kLanguageXkbAutoRepeatDelay[]; |
139 extern const char kLanguageXkbAutoRepeatInterval[]; | 139 extern const char kLanguageXkbAutoRepeatInterval[]; |
140 extern const char kAccessibilityEnabled[]; | 140 extern const char kAccessibilityEnabled[]; |
141 extern const char kLabsAdvancedFilesystemEnabled[]; | 141 extern const char kLabsAdvancedFilesystemEnabled[]; |
142 extern const char kLabsMediaplayerEnabled[]; | 142 extern const char kLabsMediaplayerEnabled[]; |
143 extern const char kLabsTalkEnabled[]; | 143 extern const char kLabsTalkEnabled[]; |
| 144 extern const char kEnableScreenLock[]; |
144 #endif | 145 #endif |
145 extern const char kIpcDisabledMessages[]; | 146 extern const char kIpcDisabledMessages[]; |
146 extern const char kShowHomeButton[]; | 147 extern const char kShowHomeButton[]; |
147 extern const char kShowPageOptionsButtons[]; | 148 extern const char kShowPageOptionsButtons[]; |
148 extern const char kRecentlySelectedEncoding[]; | 149 extern const char kRecentlySelectedEncoding[]; |
149 extern const char kDeleteBrowsingHistory[]; | 150 extern const char kDeleteBrowsingHistory[]; |
150 extern const char kDeleteDownloadHistory[]; | 151 extern const char kDeleteDownloadHistory[]; |
151 extern const char kDeleteCache[]; | 152 extern const char kDeleteCache[]; |
152 extern const char kDeleteCookies[]; | 153 extern const char kDeleteCookies[]; |
153 extern const char kDeletePasswords[]; | 154 extern const char kDeletePasswords[]; |
(...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
380 extern const char kProxyAutoDetect[]; | 381 extern const char kProxyAutoDetect[]; |
381 extern const char kProxyServer[]; | 382 extern const char kProxyServer[]; |
382 extern const char kProxyPacUrl[]; | 383 extern const char kProxyPacUrl[]; |
383 extern const char kProxyBypassList[]; | 384 extern const char kProxyBypassList[]; |
384 | 385 |
385 extern const char kRegisteredBackgroundContents[]; | 386 extern const char kRegisteredBackgroundContents[]; |
386 | 387 |
387 } // namespace prefs | 388 } // namespace prefs |
388 | 389 |
389 #endif // CHROME_COMMON_PREF_NAMES_H_ | 390 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |