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

Unified Diff: webkit/glue/fling_curve_configuration.h

Issue 16424008: move webkit/glue/fling_* to webkit/child (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: android 5 Created 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webkit/glue/fling_animator_impl_android.cc ('k') | webkit/glue/fling_curve_configuration.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/fling_curve_configuration.h
diff --git a/webkit/glue/fling_curve_configuration.h b/webkit/glue/fling_curve_configuration.h
deleted file mode 100644
index d229ee8681cd7e677b7fca29209ed16e1f2d2b91..0000000000000000000000000000000000000000
--- a/webkit/glue/fling_curve_configuration.h
+++ /dev/null
@@ -1,58 +0,0 @@
-// Copyright (c) 2013 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef WEBKIT_GLUE_FLINGCURVECONFIGURATION_H_
-#define WEBKIT_GLUE_FLINGCURVECONFIGURATION_H_
-
-#include <vector>
-
-#include "base/synchronization/lock.h"
-#include "third_party/WebKit/public/platform/WebFloatPoint.h"
-#include "third_party/WebKit/public/platform/WebSize.h"
-
-namespace WebKit {
-class WebGestureCurve;
-}
-
-namespace webkit_glue {
-
-// A class to manage dynamically adjustable parameters controlling the
-// shape of the fling deacceleration function.
-class FlingCurveConfiguration {
- public:
- FlingCurveConfiguration();
- virtual ~FlingCurveConfiguration();
-
- // Create a touchpad fling curve using the current parameters.
- WebKit::WebGestureCurve* CreateForTouchPad(
- const WebKit::WebFloatPoint& velocity,
- const WebKit::WebSize& cumulativeScroll);
-
- // Create a touchscreen fling curve using the current parameters.
- WebKit::WebGestureCurve* CreateForTouchScreen(
- const WebKit::WebFloatPoint& velocity,
- const WebKit::WebSize& cumulativeScroll);
-
- // Set the curve parameters.
- void SetCurveParameters(
- const std::vector<float>& new_touchpad,
- const std::vector<float>& new_touchscreen);
-
- private:
- WebKit::WebGestureCurve* CreateCore(
- const std::vector<float>& coefs,
- const WebKit::WebFloatPoint& velocity,
- const WebKit::WebSize& cumulativeScroll);
-
- // Protect access to touchpad_coefs_ and touchscreen_coefs_.
- base::Lock lock_;
- std::vector<float> touchpad_coefs_;
- std::vector<float> touchscreen_coefs_;
-
- DISALLOW_COPY_AND_ASSIGN(FlingCurveConfiguration);
-};
-
-} // namespace webkit_glue
-
-#endif // WEBKIT_GLUE_FLINGCURVECONFIGURATION_H_
« no previous file with comments | « webkit/glue/fling_animator_impl_android.cc ('k') | webkit/glue/fling_curve_configuration.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698