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 772 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 1376 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2179 // Policy that indicates how to handle animated images. | 2183 // Policy that indicates how to handle animated images. |
2180 const char kAnimationPolicy[] = "settings.a11y.animation_policy"; | 2184 const char kAnimationPolicy[] = "settings.a11y.animation_policy"; |
2181 #endif | 2185 #endif |
2182 | 2186 |
2183 const char kBackgroundTracingLastUpload[] = "background_tracing.last_upload"; | 2187 const char kBackgroundTracingLastUpload[] = "background_tracing.last_upload"; |
2184 | 2188 |
2185 const char kAllowDinosaurEasterEgg[] = | 2189 const char kAllowDinosaurEasterEgg[] = |
2186 "allow_dinosaur_easter_egg"; | 2190 "allow_dinosaur_easter_egg"; |
2187 | 2191 |
2188 } // namespace prefs | 2192 } // namespace prefs |
OLD | NEW |