Upstream version 10.39.225.0
[platform/framework/web/crosswalk.git] / src / content / public / common / renderer_preferences.cc
index 584b2e8..a43b943 100644 (file)
@@ -7,16 +7,6 @@
 #include "third_party/skia/include/core/SkColor.h"
 #include "ui/gfx/font_render_params.h"
 
-namespace {
-// The touchpad / touchscreen fling profiles are a matched set
-// determined via UX experimentation. Do not modify without
-// first discussing with rjkroege@chromium.org or
-// wjmaclean@chromium.org.
-const float kDefaultAlpha = -5.70762e+03f;
-const float kDefaultBeta = 1.72e+02f;
-const float kDefaultGamma = 3.7e+00f;
-}
-
 namespace content {
 
 RendererPreferences::RendererPreferences()
@@ -43,16 +33,10 @@ RendererPreferences::RendererPreferences()
       enable_do_not_track(false),
       default_zoom_level(0),
       report_frame_name_changes(false),
-      touchpad_fling_profile(3),
-      touchscreen_fling_profile(3),
       tap_multiple_targets_strategy(TAP_MULTIPLE_TARGETS_STRATEGY_POPUP),
       disable_client_blocked_error_page(false),
       plugin_fullscreen_allowed(true),
       use_video_overlay_for_embedded_encrypted_video(false) {
-  touchpad_fling_profile[0] = kDefaultAlpha;
-  touchpad_fling_profile[1] = kDefaultBeta;
-  touchpad_fling_profile[2] = kDefaultGamma;
-  touchscreen_fling_profile = touchpad_fling_profile;
 }
 
 RendererPreferences::~RendererPreferences() { }