Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(374)

Side by Side Diff: chrome/common/pref_names.cc

Issue 27196006: Add autoclick to settings page under the accessibility section. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add flag to chrome://flags Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 699 matching lines...) Expand 10 before | Expand all | Expand 10 after
710 // Note that: 'screen_magnifier_type' had been used as string pref. Hence, 710 // Note that: 'screen_magnifier_type' had been used as string pref. Hence,
711 // we are using another name pref here. 711 // we are using another name pref here.
712 const char kScreenMagnifierType[] = "settings.a11y.screen_magnifier_type2"; 712 const char kScreenMagnifierType[] = "settings.a11y.screen_magnifier_type2";
713 // A double pref which determines a zooming scale of the screen magnifier. 713 // A double pref which determines a zooming scale of the screen magnifier.
714 const char kScreenMagnifierScale[] = "settings.a11y.screen_magnifier_scale"; 714 const char kScreenMagnifierScale[] = "settings.a11y.screen_magnifier_scale";
715 // A boolean pref which determines whether virtual keyboard is enabled. 715 // A boolean pref which determines whether virtual keyboard is enabled.
716 // TODO(hashimoto): Remove this pref. 716 // TODO(hashimoto): Remove this pref.
717 const char kVirtualKeyboardEnabled[] = "settings.a11y.virtual_keyboard"; 717 const char kVirtualKeyboardEnabled[] = "settings.a11y.virtual_keyboard";
718 // A boolean pref which determines whether autoclick is enabled. 718 // A boolean pref which determines whether autoclick is enabled.
719 const char kAutoclickEnabled[] = "settings.a11y.autoclick"; 719 const char kAutoclickEnabled[] = "settings.a11y.autoclick";
720 // An integer pref which determines time in ms between when the mouse cursor
721 // stops and when an autoclick is triggered.
722 const char kAutoclickDelayMs[] = "settings.a11y.autoclick_delay_ms";
720 // A boolean pref which determines whether the accessibility menu shows 723 // A boolean pref which determines whether the accessibility menu shows
721 // regardless of the state of a11y features. 724 // regardless of the state of a11y features.
722 const char kShouldAlwaysShowAccessibilityMenu[] = "settings.a11y.enable_menu"; 725 const char kShouldAlwaysShowAccessibilityMenu[] = "settings.a11y.enable_menu";
723 726
724 // A boolean pref which turns on Advanced Filesystem 727 // A boolean pref which turns on Advanced Filesystem
725 // (USB support, SD card, etc). 728 // (USB support, SD card, etc).
726 const char kLabsAdvancedFilesystemEnabled[] = 729 const char kLabsAdvancedFilesystemEnabled[] =
727 "settings.labs.advanced_filesystem"; 730 "settings.labs.advanced_filesystem";
728 731
729 // A boolean pref which turns on the mediaplayer. 732 // A boolean pref which turns on the mediaplayer.
(...skipping 1843 matching lines...) Expand 10 before | Expand all | Expand 10 after
2573 // A dictionary pref which maps profile names to dictionary values which hold 2576 // A dictionary pref which maps profile names to dictionary values which hold
2574 // hashes of profile prefs that we track to detect changes that happen outside 2577 // hashes of profile prefs that we track to detect changes that happen outside
2575 // of Chrome. 2578 // of Chrome.
2576 const char kProfilePreferenceHashes[] = "profile.preference_hashes"; 2579 const char kProfilePreferenceHashes[] = "profile.preference_hashes";
2577 2580
2578 // Stores a pair of local time and corresponding network time to bootstrap 2581 // Stores a pair of local time and corresponding network time to bootstrap
2579 // network time tracker when browser starts. 2582 // network time tracker when browser starts.
2580 const char kNetworkTimeMapping[] = "profile.network_time_mapping"; 2583 const char kNetworkTimeMapping[] = "profile.network_time_mapping";
2581 2584
2582 } // namespace prefs 2585 } // namespace prefs
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698