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