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

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: Uninitialized variable. Ooops. Created 8 years, 9 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
« no previous file with comments | « chrome/common/pref_names.h ('k') | ui/aura/gestures/gesture_configuration.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 1757 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
OLDNEW
« no previous file with comments | « chrome/common/pref_names.h ('k') | ui/aura/gestures/gesture_configuration.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698