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

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: sadrul's comment Created 5 years, 1 month 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 the dark connect feature is enabled. 797 // A boolean pref that controls whether the dark connect feature is enabled.
794 // The dark connect feature allows a Chrome OS device to periodically wake 798 // The dark connect feature allows a Chrome OS device to periodically wake
795 // from suspend in a low-power state to maintain WiFi connectivity. 799 // from suspend in a low-power state to maintain WiFi connectivity.
796 const char kWakeOnWifiDarkConnect[] = 800 const char kWakeOnWifiDarkConnect[] =
797 "settings.internet.wake_on_wifi_darkconnect"; 801 "settings.internet.wake_on_wifi_darkconnect";
798 802
799 // This is the policy CaptivePortalAuthenticationIgnoresProxy that allows to 803 // This is the policy CaptivePortalAuthenticationIgnoresProxy that allows to
800 // open captive portal authentication pages in a separate window under 804 // open captive portal authentication pages in a separate window under
801 // a temporary incognito profile ("signin profile" is used for this purpose), 805 // a temporary incognito profile ("signin profile" is used for this purpose),
802 // which allows to bypass the user's proxy for captive portal authentication. 806 // which allows to bypass the user's proxy for captive portal authentication.
(...skipping 1381 matching lines...) Expand 10 before | Expand all | Expand 10 after
2184 // Policy that indicates how to handle animated images. 2188 // Policy that indicates how to handle animated images.
2185 const char kAnimationPolicy[] = "settings.a11y.animation_policy"; 2189 const char kAnimationPolicy[] = "settings.a11y.animation_policy";
2186 #endif 2190 #endif
2187 2191
2188 const char kBackgroundTracingLastUpload[] = "background_tracing.last_upload"; 2192 const char kBackgroundTracingLastUpload[] = "background_tracing.last_upload";
2189 2193
2190 const char kAllowDinosaurEasterEgg[] = 2194 const char kAllowDinosaurEasterEgg[] =
2191 "allow_dinosaur_easter_egg"; 2195 "allow_dinosaur_easter_egg";
2192 2196
2193 } // namespace prefs 2197 } // namespace prefs
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698