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

Side by Side Diff: chrome/common/pref_names.cc

Issue 9460001: Adding persistance for gesture recognition parms. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 10 months 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 8
9 namespace prefs { 9 namespace prefs {
10 10
(...skipping 1743 matching lines...) Expand 10 before | Expand all | Expand 10 after
1754 // troubleshooting. 1754 // troubleshooting.
1755 const char kComponentUpdaterState[] = "component_updater.state"; 1755 const char kComponentUpdaterState[] = "component_updater.state";
1756 1756
1757 // Boolean pref indicating whether the session restore dialog has been shown. 1757 // Boolean pref indicating whether the session restore dialog has been shown.
1758 const char kRestoreSessionStateDialogShown[] = 1758 const char kRestoreSessionStateDialogShown[] =
1759 "restore_session_state.dialog_shown"; 1759 "restore_session_state.dialog_shown";
1760 1760
1761 // Boolean that is true if Web Intents is enabled. 1761 // Boolean that is true if Web Intents is enabled.
1762 const char kWebIntentsEnabled[] = "webintents.enabled"; 1762 const char kWebIntentsEnabled[] = "webintents.enabled";
1763 1763
1764 #if defined(USE_AURA)
rjkroege 2012/02/24 15:21:34 the ordering convention of this file does not seem
1765 const char kMaximumTouchDownDurationInSecondsForClick[] =
1766 "gesture.maximum_touch_down_duration_in_seconds_for_click";
1767 const char kMinimumTouchDownDurationInSecondsForClick[] =
1768 "gesture.minimum_touch_down_duration_in_seconds_for_click";
1769 const char kMaximumSecondsBetweenDoubleClick[] =
1770 "gesture.maximum_seconds_between_double_click";
1771 const char kMaximumTouchMoveInPixelsForClick[] =
1772 "gesture.maximum_touch_move_in_pixels_for_click";
1773 const char kMinFlickSpeedSquared[] =
1774 "gesture.min_flick_speed_squared";
1775 #endif
1776
1764 } // namespace prefs 1777 } // namespace prefs
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698