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

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

Issue 313473002: Remove gesture configuration from about://gesture (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Reference bug to remove deprecated prefs. Created 6 years, 6 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
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 2311 matching lines...) Expand 10 before | Expand all | Expand 10 after
2322 // A value of 0 indicates that logout should happen immediately, without showing 2322 // A value of 0 indicates that logout should happen immediately, without showing
2323 // a confirmation dialog. 2323 // a confirmation dialog.
2324 const char kLogoutDialogDurationMs[] = "logout_dialog_duration_ms"; 2324 const char kLogoutDialogDurationMs[] = "logout_dialog_duration_ms";
2325 const char kPinnedLauncherApps[] = "pinned_launcher_apps"; 2325 const char kPinnedLauncherApps[] = "pinned_launcher_apps";
2326 // Boolean value indicating whether to show a logout button in the ash tray. 2326 // Boolean value indicating whether to show a logout button in the ash tray.
2327 const char kShowLogoutButtonInTray[] = "show_logout_button_in_tray"; 2327 const char kShowLogoutButtonInTray[] = "show_logout_button_in_tray";
2328 #endif 2328 #endif
2329 2329
2330 #if defined(USE_AURA) 2330 #if defined(USE_AURA)
2331 // Tuning settings for gestures. 2331 // Tuning settings for gestures.
2332 const char kFlingVelocityCap[] = "gesture.fling_velocity_cap";
2333 const char kLongPressTimeInSeconds[] =
2334 "gesture.long_press_time_in_seconds";
2335 const char kMaxDistanceBetweenTapsForDoubleTap[] =
2336 "gesture.max_distance_between_taps_for_double_tap";
2337 const char kMaxDistanceForTwoFingerTapInPixels[] =
2338 "gesture.max_distance_for_two_finger_tap_in_pixels";
2339 const char kMaxSecondsBetweenDoubleClick[] =
2340 "gesture.max_seconds_between_double_click";
2341 const char kMaxSeparationForGestureTouchesInPixels[] = 2332 const char kMaxSeparationForGestureTouchesInPixels[] =
2342 "gesture.max_separation_for_gesture_touches_in_pixels"; 2333 "gesture.max_separation_for_gesture_touches_in_pixels";
2343 const char kMaxSwipeDeviationRatio[] =
2344 "gesture.max_swipe_deviation_ratio";
2345 const char kMaxTouchDownDurationInSecondsForClick[] =
2346 "gesture.max_touch_down_duration_in_seconds_for_click";
2347 const char kMaxTouchMoveInPixelsForClick[] =
2348 "gesture.max_touch_move_in_pixels_for_click";
2349 const char kMinDistanceForPinchScrollInPixels[] =
2350 "gesture.min_distance_for_pinch_scroll_in_pixels";
2351 const char kMinFlickSpeedSquared[] =
2352 "gesture.min_flick_speed_squared";
2353 const char kMinPinchUpdateDistanceInPixels[] =
2354 "gesture.min_pinch_update_distance_in_pixels";
2355 const char kMinRailBreakVelocity[] =
2356 "gesture.min_rail_break_velocity";
2357 const char kMinScrollDeltaSquared[] =
2358 "gesture.min_scroll_delta_squared";
2359 const char kMinSwipeSpeed[] =
2360 "gesture.min_swipe_speed";
2361 const char kMinTouchDownDurationInSecondsForClick[] =
2362 "gesture.min_touch_down_duration_in_seconds_for_click";
2363 const char kPointsBufferedForVelocity[] =
2364 "gesture.points_buffered_for_velocity";
2365 const char kRailBreakProportion[] =
2366 "gesture.rail_break_proportion";
2367 const char kRailStartProportion[] =
2368 "gesture.rail_start_proportion";
2369 const char kScrollPredictionSeconds[] =
2370 "gesture.scroll_prediction_seconds";
2371 const char kSemiLongPressTimeInSeconds[] = 2334 const char kSemiLongPressTimeInSeconds[] =
2372 "gesture.semi_long_press_time_in_seconds"; 2335 "gesture.semi_long_press_time_in_seconds";
2373 const char kShowPressDelayInMS[] =
2374 "gesture.show_press_delay_in_ms";
2375 const char kTabScrubActivationDelayInMS[] = 2336 const char kTabScrubActivationDelayInMS[] =
2376 "gesture.tab_scrub_activation_delay_in_ms"; 2337 "gesture.tab_scrub_activation_delay_in_ms";
2377 const char kFlingAccelerationCurveCoefficient0[] = 2338 const char kFlingAccelerationCurveCoefficient0[] =
2378 "gesture.fling_acceleration_curve_coefficient_0"; 2339 "gesture.fling_acceleration_curve_coefficient_0";
2379 const char kFlingAccelerationCurveCoefficient1[] = 2340 const char kFlingAccelerationCurveCoefficient1[] =
2380 "gesture.fling_acceleration_curve_coefficient_1"; 2341 "gesture.fling_acceleration_curve_coefficient_1";
2381 const char kFlingAccelerationCurveCoefficient2[] = 2342 const char kFlingAccelerationCurveCoefficient2[] =
2382 "gesture.fling_acceleration_curve_coefficient_2"; 2343 "gesture.fling_acceleration_curve_coefficient_2";
2383 const char kFlingAccelerationCurveCoefficient3[] = 2344 const char kFlingAccelerationCurveCoefficient3[] =
2384 "gesture.fling_acceleration_curve_coefficient_3"; 2345 "gesture.fling_acceleration_curve_coefficient_3";
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
2509 // "mapped_title" entries, detailing the bookmark target URL (if any), the title 2470 // "mapped_title" entries, detailing the bookmark target URL (if any), the title
2510 // given by the PartnerBookmarksProvider and either the user-visible renamed 2471 // given by the PartnerBookmarksProvider and either the user-visible renamed
2511 // title or an empty string if the bookmark node was removed. 2472 // title or an empty string if the bookmark node was removed.
2512 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; 2473 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings";
2513 #endif 2474 #endif
2514 2475
2515 // Whether DNS Quick Check is disabled in proxy resolution. 2476 // Whether DNS Quick Check is disabled in proxy resolution.
2516 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; 2477 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled";
2517 2478
2518 } // namespace prefs 2479 } // namespace prefs
OLDNEW
« chrome/browser/ui/gesture_prefs_observer_factory_aura.cc ('K') | « chrome/common/pref_names.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698