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

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

Issue 586933003: fling: Remove a bunch of code for configuring fling curves. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: moar Created 6 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
« no previous file with comments | « chrome/common/pref_names.h ('k') | content/child/blink_platform_impl.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 #include "chrome/common/pref_font_webkit_names.h" 8 #include "chrome/common/pref_font_webkit_names.h"
9 9
10 namespace prefs { 10 namespace prefs {
(...skipping 2183 matching lines...) Expand 10 before | Expand all | Expand 10 after
2194 #endif 2194 #endif
2195 2195
2196 #if defined(USE_AURA) 2196 #if defined(USE_AURA)
2197 // Tuning settings for gestures. 2197 // Tuning settings for gestures.
2198 const char kMaxSeparationForGestureTouchesInPixels[] = 2198 const char kMaxSeparationForGestureTouchesInPixels[] =
2199 "gesture.max_separation_for_gesture_touches_in_pixels"; 2199 "gesture.max_separation_for_gesture_touches_in_pixels";
2200 const char kSemiLongPressTimeInSeconds[] = 2200 const char kSemiLongPressTimeInSeconds[] =
2201 "gesture.semi_long_press_time_in_seconds"; 2201 "gesture.semi_long_press_time_in_seconds";
2202 const char kTabScrubActivationDelayInMS[] = 2202 const char kTabScrubActivationDelayInMS[] =
2203 "gesture.tab_scrub_activation_delay_in_ms"; 2203 "gesture.tab_scrub_activation_delay_in_ms";
2204 const char kFlingAccelerationCurveCoefficient0[] =
2205 "gesture.fling_acceleration_curve_coefficient_0";
2206 const char kFlingAccelerationCurveCoefficient1[] =
2207 "gesture.fling_acceleration_curve_coefficient_1";
2208 const char kFlingAccelerationCurveCoefficient2[] =
2209 "gesture.fling_acceleration_curve_coefficient_2";
2210 const char kFlingAccelerationCurveCoefficient3[] =
2211 "gesture.fling_acceleration_curve_coefficient_3";
2212 const char kFlingCurveTouchpadAlpha[] = "flingcurve.touchpad_alpha";
2213 const char kFlingCurveTouchpadBeta[] = "flingcurve.touchpad_beta";
2214 const char kFlingCurveTouchpadGamma[] = "flingcurve.touchpad_gamma";
2215 const char kFlingCurveTouchscreenAlpha[] = "flingcurve.touchscreen_alpha";
2216 const char kFlingCurveTouchscreenBeta[] = "flingcurve.touchscreen_beta";
2217 const char kFlingCurveTouchscreenGamma[] = "flingcurve.touchscreen_gamma";
2218 const char kFlingMaxCancelToDownTimeInMs[] = 2204 const char kFlingMaxCancelToDownTimeInMs[] =
2219 "gesture.fling_max_cancel_to_down_time_in_ms"; 2205 "gesture.fling_max_cancel_to_down_time_in_ms";
2220 const char kFlingMaxTapGapTimeInMs[] = 2206 const char kFlingMaxTapGapTimeInMs[] =
2221 "gesture.fling_max_tap_gap_time_in_ms"; 2207 "gesture.fling_max_tap_gap_time_in_ms";
2222 const char kOverscrollHorizontalThresholdComplete[] = 2208 const char kOverscrollHorizontalThresholdComplete[] =
2223 "overscroll.horizontal_threshold_complete"; 2209 "overscroll.horizontal_threshold_complete";
2224 const char kOverscrollVerticalThresholdComplete[] = 2210 const char kOverscrollVerticalThresholdComplete[] =
2225 "overscroll.vertical_threshold_complete"; 2211 "overscroll.vertical_threshold_complete";
2226 const char kOverscrollMinimumThresholdStart[] = 2212 const char kOverscrollMinimumThresholdStart[] =
2227 "overscroll.minimum_threshold_start"; 2213 "overscroll.minimum_threshold_start";
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
2339 // Whether DNS Quick Check is disabled in proxy resolution. 2325 // Whether DNS Quick Check is disabled in proxy resolution.
2340 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; 2326 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled";
2341 2327
2342 // Whether Guest Mode is enabled within the browser. 2328 // Whether Guest Mode is enabled within the browser.
2343 const char kBrowserGuestModeEnabled[] = "profile.browser_guest_enabled"; 2329 const char kBrowserGuestModeEnabled[] = "profile.browser_guest_enabled";
2344 2330
2345 // Whether Adding a new Person is enabled within the user manager. 2331 // Whether Adding a new Person is enabled within the user manager.
2346 const char kBrowserAddPersonEnabled[] = "profile.add_person_enabled"; 2332 const char kBrowserAddPersonEnabled[] = "profile.add_person_enabled";
2347 2333
2348 } // namespace prefs 2334 } // namespace prefs
OLDNEW
« no previous file with comments | « chrome/common/pref_names.h ('k') | content/child/blink_platform_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698