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/basictypes.h" | 7 #include "base/basictypes.h" |
8 #include "chrome/common/pref_font_webkit_names.h" | 8 #include "chrome/common/pref_font_webkit_names.h" |
9 | 9 |
10 namespace prefs { | 10 namespace prefs { |
(...skipping 666 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
677 // Note that: 'screen_magnifier_type' had been used as string pref. Hence, | 677 // Note that: 'screen_magnifier_type' had been used as string pref. Hence, |
678 // we are using another name pref here. | 678 // we are using another name pref here. |
679 const char kScreenMagnifierType[] = "settings.a11y.screen_magnifier_type2"; | 679 const char kScreenMagnifierType[] = "settings.a11y.screen_magnifier_type2"; |
680 // A double pref which determines a zooming scale of the screen magnifier. | 680 // A double pref which determines a zooming scale of the screen magnifier. |
681 const char kScreenMagnifierScale[] = "settings.a11y.screen_magnifier_scale"; | 681 const char kScreenMagnifierScale[] = "settings.a11y.screen_magnifier_scale"; |
682 // A boolean pref which determines whether virtual keyboard is enabled. | 682 // A boolean pref which determines whether virtual keyboard is enabled. |
683 // TODO(hashimoto): Remove this pref. | 683 // TODO(hashimoto): Remove this pref. |
684 const char kVirtualKeyboardEnabled[] = "settings.a11y.virtual_keyboard"; | 684 const char kVirtualKeyboardEnabled[] = "settings.a11y.virtual_keyboard"; |
685 // A boolean pref which determines whether autoclick is enabled. | 685 // A boolean pref which determines whether autoclick is enabled. |
686 const char kAutoclickEnabled[] = "settings.a11y.autoclick"; | 686 const char kAutoclickEnabled[] = "settings.a11y.autoclick"; |
| 687 // An integer pref which determines time in ms between when the mouse cursor |
| 688 // stops and when an autoclick is triggered. |
| 689 const char kAutoclickDelayMs[] = "settings.a11y.autoclick_delay_ms"; |
687 // A boolean pref which determines whether the accessibility menu shows | 690 // A boolean pref which determines whether the accessibility menu shows |
688 // regardless of the state of a11y features. | 691 // regardless of the state of a11y features. |
689 const char kShouldAlwaysShowAccessibilityMenu[] = "settings.a11y.enable_menu"; | 692 const char kShouldAlwaysShowAccessibilityMenu[] = "settings.a11y.enable_menu"; |
690 | 693 |
691 // A boolean pref which turns on Advanced Filesystem | 694 // A boolean pref which turns on Advanced Filesystem |
692 // (USB support, SD card, etc). | 695 // (USB support, SD card, etc). |
693 const char kLabsAdvancedFilesystemEnabled[] = | 696 const char kLabsAdvancedFilesystemEnabled[] = |
694 "settings.labs.advanced_filesystem"; | 697 "settings.labs.advanced_filesystem"; |
695 | 698 |
696 // A boolean pref which turns on the mediaplayer. | 699 // A boolean pref which turns on the mediaplayer. |
(...skipping 1847 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2544 // A dictionary pref which maps profile names to dictionary values which hold | 2547 // A dictionary pref which maps profile names to dictionary values which hold |
2545 // hashes of profile prefs that we track to detect changes that happen outside | 2548 // hashes of profile prefs that we track to detect changes that happen outside |
2546 // of Chrome. | 2549 // of Chrome. |
2547 const char kProfilePreferenceHashes[] = "profile.preference_hashes"; | 2550 const char kProfilePreferenceHashes[] = "profile.preference_hashes"; |
2548 | 2551 |
2549 // Stores a pair of local time and corresponding network time to bootstrap | 2552 // Stores a pair of local time and corresponding network time to bootstrap |
2550 // network time tracker when browser starts. | 2553 // network time tracker when browser starts. |
2551 const char kNetworkTimeMapping[] = "profile.network_time_mapping"; | 2554 const char kNetworkTimeMapping[] = "profile.network_time_mapping"; |
2552 | 2555 |
2553 } // namespace prefs | 2556 } // namespace prefs |
OLD | NEW |