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 #include "chrome/common/pref_names.h" | 5 #include "chrome/common/pref_names.h" |
6 | 6 |
7 namespace prefs { | 7 namespace prefs { |
8 | 8 |
9 // *************** PROFILE PREFS *************** | 9 // *************** PROFILE PREFS *************** |
10 // These are attached to the user profile | 10 // These are attached to the user profile |
(...skipping 421 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
432 const char kLanguageXkbAutoRepeatDelay[] = | 432 const char kLanguageXkbAutoRepeatDelay[] = |
433 "settings.language.xkb_auto_repeat_delay_r2"; | 433 "settings.language.xkb_auto_repeat_delay_r2"; |
434 // A integer pref which determines key repeat interval (in ms). | 434 // A integer pref which determines key repeat interval (in ms). |
435 const char kLanguageXkbAutoRepeatInterval[] = | 435 const char kLanguageXkbAutoRepeatInterval[] = |
436 "settings.language.xkb_auto_repeat_interval_r2"; | 436 "settings.language.xkb_auto_repeat_interval_r2"; |
437 // "_r2" suffixes are added to the three prefs above when we change the | 437 // "_r2" suffixes are added to the three prefs above when we change the |
438 // preferences not user-configurable, not to sync them with cloud. | 438 // preferences not user-configurable, not to sync them with cloud. |
439 | 439 |
440 // A boolean pref which determines whether accessibility is enabled. | 440 // A boolean pref which determines whether accessibility is enabled. |
441 const char kAccessibilityEnabled[] = "settings.accessibility"; | 441 const char kAccessibilityEnabled[] = "settings.accessibility"; |
442 // A string pref that stored the version of the currently installed ChromeVox | |
asargent_no_longer_on_chrome
2011/01/20 05:55:59
nit: consider rewording "that stored" to something
Chaitanya
2011/01/20 20:04:52
Done.
| |
443 // accessibility extension. | |
444 const char kAccessibilityChromeVoxVersion[] = | |
445 "settings.accessibility.chromevox"; | |
442 | 446 |
443 // A boolean pref which turns on Advanced Filesystem | 447 // A boolean pref which turns on Advanced Filesystem |
444 // (USB support, SD card, etc). | 448 // (USB support, SD card, etc). |
445 const char kLabsAdvancedFilesystemEnabled[] = | 449 const char kLabsAdvancedFilesystemEnabled[] = |
446 "settings.labs.advanced_filesystem"; | 450 "settings.labs.advanced_filesystem"; |
447 | 451 |
448 // A boolean pref which turns on the mediaplayer. | 452 // A boolean pref which turns on the mediaplayer. |
449 const char kLabsMediaplayerEnabled[] = "settings.labs.mediaplayer"; | 453 const char kLabsMediaplayerEnabled[] = "settings.labs.mediaplayer"; |
450 | 454 |
451 // A boolean pref that turns on screen locker. | 455 // A boolean pref that turns on screen locker. |
(...skipping 718 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1170 const char kManagedDefaultPluginsSetting[] = | 1174 const char kManagedDefaultPluginsSetting[] = |
1171 "profile.managed_default_content_settings.plugins"; | 1175 "profile.managed_default_content_settings.plugins"; |
1172 const char kManagedDefaultPopupsSetting[] = | 1176 const char kManagedDefaultPopupsSetting[] = |
1173 "profile.managed_default_content_settings.popups"; | 1177 "profile.managed_default_content_settings.popups"; |
1174 | 1178 |
1175 // Dictionary for storing the set of known background pages (keys are extension | 1179 // Dictionary for storing the set of known background pages (keys are extension |
1176 // IDs of background page owners, value is a boolean that is true if the user | 1180 // IDs of background page owners, value is a boolean that is true if the user |
1177 // needs to acknowledge this page. | 1181 // needs to acknowledge this page. |
1178 const char kKnownBackgroundPages[] = "background_pages.known"; | 1182 const char kKnownBackgroundPages[] = "background_pages.known"; |
1179 } // namespace prefs | 1183 } // namespace prefs |
OLD | NEW |