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

Unified Diff: webkit/child/webkitplatformsupport_child_impl.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/child/fling_curve_configuration.cc ('k') | webkit/child/webkitplatformsupport_child_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/child/webkitplatformsupport_child_impl.h
diff --git a/webkit/child/webkitplatformsupport_child_impl.h b/webkit/child/webkitplatformsupport_child_impl.h
index 4589906e0b5e326a652dd206bb6c8c7333ee5fdb..8e23ead00689916c2c68eb33c03a56f9fda1c169 100644
--- a/webkit/child/webkitplatformsupport_child_impl.h
+++ b/webkit/child/webkitplatformsupport_child_impl.h
@@ -10,11 +10,24 @@
namespace webkit_glue {
+class FlingCurveConfiguration;
+
class WEBKIT_CHILD_EXPORT WebKitPlatformSupportChildImpl :
public WebKitPlatformSupportImpl {
public:
WebKitPlatformSupportChildImpl();
virtual ~WebKitPlatformSupportChildImpl();
+
+ void SetFlingCurveParameters(
+ const std::vector<float>& new_touchpad,
+ const std::vector<float>& new_touchscreen);
+
+ virtual WebKit::WebGestureCurve* createFlingAnimationCurve(
+ int device_source,
+ const WebKit::WebFloatPoint& velocity,
+ const WebKit::WebSize& cumulative_scroll) OVERRIDE;
+
+ scoped_ptr<FlingCurveConfiguration> fling_curve_configuration_;
};
} // namespace webkit_glue
« no previous file with comments | « webkit/child/fling_curve_configuration.cc ('k') | webkit/child/webkitplatformsupport_child_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698