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