Chromium Code Reviews| 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 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 155 extern const char kLanguageXkbRemapControlKeyTo[]; | 155 extern const char kLanguageXkbRemapControlKeyTo[]; |
| 156 extern const char kLanguageXkbRemapAltKeyTo[]; | 156 extern const char kLanguageXkbRemapAltKeyTo[]; |
| 157 extern const char kLanguageXkbAutoRepeatEnabled[]; | 157 extern const char kLanguageXkbAutoRepeatEnabled[]; |
| 158 extern const char kLanguageXkbAutoRepeatDelay[]; | 158 extern const char kLanguageXkbAutoRepeatDelay[]; |
| 159 extern const char kLanguageXkbAutoRepeatInterval[]; | 159 extern const char kLanguageXkbAutoRepeatInterval[]; |
| 160 extern const char kAccessibilityEnabled[]; | 160 extern const char kAccessibilityEnabled[]; |
| 161 extern const char kLabsAdvancedFilesystemEnabled[]; | 161 extern const char kLabsAdvancedFilesystemEnabled[]; |
| 162 extern const char kLabsMediaplayerEnabled[]; | 162 extern const char kLabsMediaplayerEnabled[]; |
| 163 extern const char kEnableScreenLock[]; | 163 extern const char kEnableScreenLock[]; |
| 164 extern const char kShowPlanNotifications[]; | 164 extern const char kShowPlanNotifications[]; |
| 165 extern const char kAudioMute[]; | |
| 166 extern const char kAudioVolume[]; | |
| 165 #endif | 167 #endif |
|
zhurunz
2011/01/13 00:19:25
Keep the list alpha sorted might be a good idea.
davejcool
2011/01/13 21:31:14
Since it wasn't sorted already, I wasn't sure wher
| |
| 166 extern const char kIpcDisabledMessages[]; | 168 extern const char kIpcDisabledMessages[]; |
| 167 extern const char kShowHomeButton[]; | 169 extern const char kShowHomeButton[]; |
| 168 extern const char kShowPageOptionsButtons[]; | 170 extern const char kShowPageOptionsButtons[]; |
| 169 extern const char kRecentlySelectedEncoding[]; | 171 extern const char kRecentlySelectedEncoding[]; |
| 170 extern const char kDeleteBrowsingHistory[]; | 172 extern const char kDeleteBrowsingHistory[]; |
| 171 extern const char kDeleteDownloadHistory[]; | 173 extern const char kDeleteDownloadHistory[]; |
| 172 extern const char kDeleteCache[]; | 174 extern const char kDeleteCache[]; |
| 173 extern const char kDeleteCookies[]; | 175 extern const char kDeleteCookies[]; |
| 174 extern const char kDeletePasswords[]; | 176 extern const char kDeletePasswords[]; |
| 175 extern const char kDeleteFormData[]; | 177 extern const char kDeleteFormData[]; |
| (...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 436 extern const char kAuthNegotiateDelegateWhitelist[]; | 438 extern const char kAuthNegotiateDelegateWhitelist[]; |
| 437 extern const char kGSSAPILibraryName[]; | 439 extern const char kGSSAPILibraryName[]; |
| 438 | 440 |
| 439 extern const char kKnownBackgroundPages[]; | 441 extern const char kKnownBackgroundPages[]; |
| 440 | 442 |
| 441 extern const char kDisable3DAPIs[]; | 443 extern const char kDisable3DAPIs[]; |
| 442 | 444 |
| 443 } // namespace prefs | 445 } // namespace prefs |
| 444 | 446 |
| 445 #endif // CHROME_COMMON_PREF_NAMES_H_ | 447 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |