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 | 8 |
9 namespace prefs { | 9 namespace prefs { |
10 | 10 |
(...skipping 434 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
445 // TODO(derat): This is deprecated in favor of |kAudioVolumePercent|; remove it | 445 // TODO(derat): This is deprecated in favor of |kAudioVolumePercent|; remove it |
446 // after R20 once we've cleared old user settings: http://crbug.com/112039 | 446 // after R20 once we've cleared old user settings: http://crbug.com/112039 |
447 const char kAudioVolumeDb[] = "settings.audio.volume"; | 447 const char kAudioVolumeDb[] = "settings.audio.volume"; |
448 | 448 |
449 // A double pref storing the user-requested volume. | 449 // A double pref storing the user-requested volume. |
450 const char kAudioVolumePercent[] = "settings.audio.volume_percent"; | 450 const char kAudioVolumePercent[] = "settings.audio.volume_percent"; |
451 | 451 |
452 // A boolean pref set to true if touchpad tap-to-click is enabled. | 452 // A boolean pref set to true if touchpad tap-to-click is enabled. |
453 const char kTapToClickEnabled[] = "settings.touchpad.enable_tap_to_click"; | 453 const char kTapToClickEnabled[] = "settings.touchpad.enable_tap_to_click"; |
454 | 454 |
| 455 // A boolean pref set to true if touchpad three-finger-click is enabled. |
| 456 const char kEnableTouchpadThreeFingerClick[] = |
| 457 "settings.touchpad.enable_three_finger_click"; |
| 458 |
455 // A boolean pref set to true if touchpad natural scrolling is enabled. | 459 // A boolean pref set to true if touchpad natural scrolling is enabled. |
456 const char kNaturalScroll[] = "settings.touchpad.natural_scroll"; | 460 const char kNaturalScroll[] = "settings.touchpad.natural_scroll"; |
457 | 461 |
458 // A boolean pref set to true if primary mouse button is the left button. | 462 // A boolean pref set to true if primary mouse button is the left button. |
459 const char kPrimaryMouseButtonRight[] = "settings.mouse.primary_right"; | 463 const char kPrimaryMouseButtonRight[] = "settings.mouse.primary_right"; |
460 | 464 |
461 // A integer pref for the touchpad sensitivity. | 465 // A integer pref for the touchpad sensitivity. |
462 const char kMouseSensitivity[] = "settings.mouse.sensitivity2"; | 466 const char kMouseSensitivity[] = "settings.mouse.sensitivity2"; |
463 | 467 |
464 // A integer pref for the touchpad sensitivity. | 468 // A integer pref for the touchpad sensitivity. |
(...skipping 1374 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1839 const char kRailBreakProportion[] = | 1843 const char kRailBreakProportion[] = |
1840 "gesture.rail_break_proportion"; | 1844 "gesture.rail_break_proportion"; |
1841 const char kRailStartProportion[] = | 1845 const char kRailStartProportion[] = |
1842 "gesture.rail_start_proportion"; | 1846 "gesture.rail_start_proportion"; |
1843 #endif | 1847 #endif |
1844 | 1848 |
1845 // Indicates whether the browser is in managed mode. | 1849 // Indicates whether the browser is in managed mode. |
1846 const char kInManagedMode[] = "managed_mode"; | 1850 const char kInManagedMode[] = "managed_mode"; |
1847 | 1851 |
1848 } // namespace prefs | 1852 } // namespace prefs |
OLD | NEW |