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

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: Updated as per rjkroege's review. Factored aura code into separate cc file. 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
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 1750 matching lines...) Expand 10 before | Expand all | Expand 10 after
1761 1761
1762 // Boolean pref indicating whether the session restore dialog has been shown. 1762 // Boolean pref indicating whether the session restore dialog has been shown.
1763 const char kRestoreSessionStateDialogShown[] = 1763 const char kRestoreSessionStateDialogShown[] =
1764 "restore_session_state.dialog_shown"; 1764 "restore_session_state.dialog_shown";
1765 1765
1766 // Boolean that is true if Web Intents is enabled. 1766 // Boolean that is true if Web Intents is enabled.
1767 const char kWebIntentsEnabled[] = "webintents.enabled"; 1767 const char kWebIntentsEnabled[] = "webintents.enabled";
1768 1768
1769 #if defined(USE_AURA) 1769 #if defined(USE_AURA)
1770 const char kPinnedLauncherApps[] = "pinned_launcher_apps"; 1770 const char kPinnedLauncherApps[] = "pinned_launcher_apps";
1771
1772 const char kMaximumSecondsBetweenDoubleClick[] =
1773 "gesture.maximum_seconds_between_double_click";
1774 const char kMaximumTouchDownDurationInSecondsForClick[] =
1775 "gesture.maximum_touch_down_duration_in_seconds_for_click";
1776 const char kMaximumTouchMoveInPixelsForClick[] =
1777 "gesture.maximum_touch_move_in_pixels_for_click";
1778 const char kMinFlickSpeedSquared[] =
1779 "gesture.min_flick_speed_squared";
1780 const char kMinimumTouchDownDurationInSecondsForClick[] =
1781 "gesture.minimum_touch_down_duration_in_seconds_for_click";
1771 #endif 1782 #endif
1772 1783
1773 // Indicates whether the browser is in managed mode. 1784 // Indicates whether the browser is in managed mode.
1774 const char kInManagedMode[] = "managed_mode"; 1785 const char kInManagedMode[] = "managed_mode";
1775 1786
1776 } // namespace prefs 1787 } // namespace prefs
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698