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

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

Issue 10878085: Change default values of some gesture related constants (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: patch Created 8 years, 3 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 | Annotate | Revision Log
« no previous file with comments | « chrome/common/pref_names.h ('k') | ui/aura/gestures/gesture_recognizer_unittest.cc » ('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 1925 matching lines...) Expand 10 before | Expand all | Expand 10 after
1936 // String value corresponding to ash::Shell::ShelfAutoHideBehavior. 1936 // String value corresponding to ash::Shell::ShelfAutoHideBehavior.
1937 const char kShelfAutoHideBehavior[] = 1937 const char kShelfAutoHideBehavior[] =
1938 "auto_hide_behavior"; 1938 "auto_hide_behavior";
1939 // Boolean value indicating whether to use default pinned apps. 1939 // Boolean value indicating whether to use default pinned apps.
1940 const char kUseDefaultPinnedApps[] = "use_default_pinned_apps"; 1940 const char kUseDefaultPinnedApps[] = "use_default_pinned_apps";
1941 const char kPinnedLauncherApps[] = 1941 const char kPinnedLauncherApps[] =
1942 "pinned_launcher_apps"; 1942 "pinned_launcher_apps";
1943 1943
1944 const char kLongPressTimeInSeconds[] = 1944 const char kLongPressTimeInSeconds[] =
1945 "gesture.long_press_time_in_seconds"; 1945 "gesture.long_press_time_in_seconds";
1946 const char kMaxDistanceBetweenTapsForDoubleTap[] =
1947 "gesture.max_distance_between_taps_for_double_tap";
1946 const char kMaxDistanceForTwoFingerTapInPixels[] = 1948 const char kMaxDistanceForTwoFingerTapInPixels[] =
1947 "gesture.max_distance_for_two_finger_tap_in_pixels"; 1949 "gesture.max_distance_for_two_finger_tap_in_pixels";
1948 const char kMaxSecondsBetweenDoubleClick[] = 1950 const char kMaxSecondsBetweenDoubleClick[] =
1949 "gesture.max_seconds_between_double_click"; 1951 "gesture.max_seconds_between_double_click";
1950 const char kMaxSeparationForGestureTouchesInPixels[] = 1952 const char kMaxSeparationForGestureTouchesInPixels[] =
1951 "gesture.max_separation_for_gesture_touches_in_pixels"; 1953 "gesture.max_separation_for_gesture_touches_in_pixels";
1952 const char kMaxSwipeDeviationRatio[] = 1954 const char kMaxSwipeDeviationRatio[] =
1953 "gesture.max_swipe_deviation_ratio"; 1955 "gesture.max_swipe_deviation_ratio";
1954 const char kMaxTouchDownDurationInSecondsForClick[] = 1956 const char kMaxTouchDownDurationInSecondsForClick[] =
1955 "gesture.max_touch_down_duration_in_seconds_for_click"; 1957 "gesture.max_touch_down_duration_in_seconds_for_click";
(...skipping 30 matching lines...) Expand all
1986 1988
1987 // Counts how many more times the 'profile on a network share' warning should be 1989 // Counts how many more times the 'profile on a network share' warning should be
1988 // shown to the user before the next silence period. 1990 // shown to the user before the next silence period.
1989 const char kNetworkProfileWarningsLeft[] = "network_profile.warnings_left"; 1991 const char kNetworkProfileWarningsLeft[] = "network_profile.warnings_left";
1990 // Tracks the time of the last shown warning. Used to reset 1992 // Tracks the time of the last shown warning. Used to reset
1991 // |network_profile.warnings_left| after a silence period. 1993 // |network_profile.warnings_left| after a silence period.
1992 const char kNetworkProfileLastWarningTime[] = 1994 const char kNetworkProfileLastWarningTime[] =
1993 "network_profile.last_warning_time"; 1995 "network_profile.last_warning_time";
1994 1996
1995 } // namespace prefs 1997 } // namespace prefs
OLDNEW
« no previous file with comments | « chrome/common/pref_names.h ('k') | ui/aura/gestures/gesture_recognizer_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698