OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #include "base/macros.h" | 7 #include "base/macros.h" |
8 #include "build/build_config.h" | 8 #include "build/build_config.h" |
9 #include "chrome/common/pref_font_webkit_names.h" | 9 #include "chrome/common/pref_font_webkit_names.h" |
10 | 10 |
(...skipping 580 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
591 // accessibility. This feature is separate from displaying an onscreen keyboard | 591 // accessibility. This feature is separate from displaying an onscreen keyboard |
592 // due to lack of a physical keyboard. | 592 // due to lack of a physical keyboard. |
593 const char kAccessibilityVirtualKeyboardEnabled[] = | 593 const char kAccessibilityVirtualKeyboardEnabled[] = |
594 "settings.a11y.virtual_keyboard"; | 594 "settings.a11y.virtual_keyboard"; |
595 // A boolean pref which determines whether autoclick is enabled. | 595 // A boolean pref which determines whether autoclick is enabled. |
596 const char kAccessibilityAutoclickEnabled[] = "settings.a11y.autoclick"; | 596 const char kAccessibilityAutoclickEnabled[] = "settings.a11y.autoclick"; |
597 // An integer pref which determines time in ms between when the mouse cursor | 597 // An integer pref which determines time in ms between when the mouse cursor |
598 // stops and when an autoclick is triggered. | 598 // stops and when an autoclick is triggered. |
599 const char kAccessibilityAutoclickDelayMs[] = | 599 const char kAccessibilityAutoclickDelayMs[] = |
600 "settings.a11y.autoclick_delay_ms"; | 600 "settings.a11y.autoclick_delay_ms"; |
| 601 // A boolean pref which determines whether caret highlighting is enabled. |
| 602 const char kAccessibilityCaretHighlightEnabled[] = |
| 603 "settings.a11y.caret_highlight"; |
| 604 // A boolean pref which determines whether cursor highlighting is enabled. |
| 605 const char kAccessibilityCursorHighlightEnabled[] = |
| 606 "settings.a11y.cursor_highlight"; |
| 607 // A boolean pref which determines whether focus highlighting is enabled. |
| 608 const char kAccessibilityFocusHighlightEnabled[] = |
| 609 "settings.a11y.focus_highlight"; |
| 610 // A boolean pref which determines whether select-to-speak is enabled. |
| 611 const char kAccessibilitySelectToSpeakEnabled[] = |
| 612 "settings.a11y.select_to_speak"; |
| 613 // A boolean pref which determines whether switch access is enabled. |
| 614 const char kAccessibilitySwitchAccessEnabled[] = |
| 615 "settings.a11y.switch_access"; |
601 // A boolean pref which determines whether the accessibility menu shows | 616 // A boolean pref which determines whether the accessibility menu shows |
602 // regardless of the state of a11y features. | 617 // regardless of the state of a11y features. |
603 const char kShouldAlwaysShowAccessibilityMenu[] = "settings.a11y.enable_menu"; | 618 const char kShouldAlwaysShowAccessibilityMenu[] = "settings.a11y.enable_menu"; |
604 | 619 |
605 // A boolean pref which turns on Advanced Filesystem | 620 // A boolean pref which turns on Advanced Filesystem |
606 // (USB support, SD card, etc). | 621 // (USB support, SD card, etc). |
607 const char kLabsAdvancedFilesystemEnabled[] = | 622 const char kLabsAdvancedFilesystemEnabled[] = |
608 "settings.labs.advanced_filesystem"; | 623 "settings.labs.advanced_filesystem"; |
609 | 624 |
610 // A boolean pref which turns on the mediaplayer. | 625 // A boolean pref which turns on the mediaplayer. |
(...skipping 1562 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2173 const char kMediaRouterEnableCloudServices[] = | 2188 const char kMediaRouterEnableCloudServices[] = |
2174 "media_router.cloudservices.enabled"; | 2189 "media_router.cloudservices.enabled"; |
2175 #endif // defined(GOOGLE_CHROME_BUILD) | 2190 #endif // defined(GOOGLE_CHROME_BUILD) |
2176 // Whether or not the Media Router first run flow has been acknowledged by the | 2191 // Whether or not the Media Router first run flow has been acknowledged by the |
2177 // user. | 2192 // user. |
2178 const char kMediaRouterFirstRunFlowAcknowledged[] = | 2193 const char kMediaRouterFirstRunFlowAcknowledged[] = |
2179 "media_router.firstrunflow.acknowledged"; | 2194 "media_router.firstrunflow.acknowledged"; |
2180 #endif | 2195 #endif |
2181 | 2196 |
2182 } // namespace prefs | 2197 } // namespace prefs |
OLD | NEW |