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 1757 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1768 | 1768 |
1769 // Boolean pref indicating whether the session restore dialog has been shown. | 1769 // Boolean pref indicating whether the session restore dialog has been shown. |
1770 const char kRestoreSessionStateDialogShown[] = | 1770 const char kRestoreSessionStateDialogShown[] = |
1771 "restore_session_state.dialog_shown"; | 1771 "restore_session_state.dialog_shown"; |
1772 | 1772 |
1773 // Boolean that is true if Web Intents is enabled. | 1773 // Boolean that is true if Web Intents is enabled. |
1774 const char kWebIntentsEnabled[] = "webintents.enabled"; | 1774 const char kWebIntentsEnabled[] = "webintents.enabled"; |
1775 | 1775 |
1776 #if defined(USE_AURA) | 1776 #if defined(USE_AURA) |
1777 const char kPinnedLauncherApps[] = "pinned_launcher_apps"; | 1777 const char kPinnedLauncherApps[] = "pinned_launcher_apps"; |
| 1778 |
| 1779 const char kMaximumSecondsBetweenDoubleClick[] = |
| 1780 "gesture.maximum_seconds_between_double_click"; |
| 1781 const char kMaximumTouchDownDurationInSecondsForClick[] = |
| 1782 "gesture.maximum_touch_down_duration_in_seconds_for_click"; |
| 1783 const char kMaximumTouchMoveInPixelsForClick[] = |
| 1784 "gesture.maximum_touch_move_in_pixels_for_click"; |
| 1785 const char kMinFlickSpeedSquared[] = |
| 1786 "gesture.min_flick_speed_squared"; |
| 1787 const char kMinimumTouchDownDurationInSecondsForClick[] = |
| 1788 "gesture.minimum_touch_down_duration_in_seconds_for_click"; |
1778 #endif | 1789 #endif |
1779 | 1790 |
1780 // Indicates whether the browser is in managed mode. | 1791 // Indicates whether the browser is in managed mode. |
1781 const char kInManagedMode[] = "managed_mode"; | 1792 const char kInManagedMode[] = "managed_mode"; |
1782 | 1793 |
1783 } // namespace prefs | 1794 } // namespace prefs |
OLD | NEW |