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

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

Issue 1412623006: Developer Feature: Add Debug Accelerators to Toggle Touchscreen/Touchpad On or Off (CrOS) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix actions.xml. Created 5 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
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 772 matching lines...) Expand 10 before | Expand all | Expand 10 after
783 // is set by the component wallpaper picker, it is set to an empty string. 783 // is set by the component wallpaper picker, it is set to an empty string.
784 const char kCurrentWallpaperAppName[] = "wallpaper.app.name"; 784 const char kCurrentWallpaperAppName[] = "wallpaper.app.name";
785 785
786 // List of mounted file systems via the File System Provider API. Used to 786 // List of mounted file systems via the File System Provider API. Used to
787 // restore them after a reboot. 787 // restore them after a reboot.
788 const char kFileSystemProviderMounted[] = "file_system_provider.mounted"; 788 const char kFileSystemProviderMounted[] = "file_system_provider.mounted";
789 789
790 // A boolean pref set to true if the virtual keyboard should be enabled. 790 // A boolean pref set to true if the virtual keyboard should be enabled.
791 const char kTouchVirtualKeyboardEnabled[] = "ui.touch_virtual_keyboard_enabled"; 791 const char kTouchVirtualKeyboardEnabled[] = "ui.touch_virtual_keyboard_enabled";
792 792
793 // Boolean prefs for the status of the touch screen and the touchpad.
794 const char kTouchScreenEnabled[] = "events.touch_screen.enabled";
795 const char kTouchPadEnabled[] = "events.touch_pad.enabled";
796
793 // A boolean pref that controls whether wake on SSID is enabled. 797 // A boolean pref that controls whether wake on SSID is enabled.
794 const char kWakeOnWifiSsid[] = "settings.internet.wake_on_wifi_ssid"; 798 const char kWakeOnWifiSsid[] = "settings.internet.wake_on_wifi_ssid";
795 799
796 // This is the policy CaptivePortalAuthenticationIgnoresProxy that allows to 800 // This is the policy CaptivePortalAuthenticationIgnoresProxy that allows to
797 // open captive portal authentication pages in a separate window under 801 // open captive portal authentication pages in a separate window under
798 // a temporary incognito profile ("signin profile" is used for this purpose), 802 // a temporary incognito profile ("signin profile" is used for this purpose),
799 // which allows to bypass the user's proxy for captive portal authentication. 803 // which allows to bypass the user's proxy for captive portal authentication.
800 const char kCaptivePortalAuthenticationIgnoresProxy[] = 804 const char kCaptivePortalAuthenticationIgnoresProxy[] =
801 "proxy.captive_portal_ignores_proxy"; 805 "proxy.captive_portal_ignores_proxy";
802 806
(...skipping 1374 matching lines...) Expand 10 before | Expand all | Expand 10 after
2177 "supervised_users.whitelists"; 2181 "supervised_users.whitelists";
2178 2182
2179 #if defined(ENABLE_EXTENSIONS) 2183 #if defined(ENABLE_EXTENSIONS)
2180 // Policy that indicates how to handle animated images. 2184 // Policy that indicates how to handle animated images.
2181 const char kAnimationPolicy[] = "settings.a11y.animation_policy"; 2185 const char kAnimationPolicy[] = "settings.a11y.animation_policy";
2182 #endif 2186 #endif
2183 2187
2184 const char kBackgroundTracingLastUpload[] = "background_tracing.last_upload"; 2188 const char kBackgroundTracingLastUpload[] = "background_tracing.last_upload";
2185 2189
2186 } // namespace prefs 2190 } // namespace prefs
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698