HomeSort by relevance Sort by last modified time
    Searched refs:WebGestureCurve (Results 1 - 21 of 21) sorted by null

  /external/chromium_org/third_party/WebKit/public/platform/
WebGestureCurve.h 33 // WebGestureCurve defines the animation parameters as a function of time
36 class WebGestureCurve {
38 virtual ~WebGestureCurve() { }
Platform.h 77 class WebGestureCurve;
594 virtual WebGestureCurve* createFlingAnimationCurve(WebGestureDevice deviceSource, const WebFloatPoint& velocity, const WebSize& cumulativeScroll) { return 0; }
  /external/chromium_org/third_party/WebKit/Source/platform/exported/
WebActiveGestureAnimation.h 36 class WebGestureCurve;
46 static PassOwnPtr<WebActiveGestureAnimation> createAtAnimationStart(PassOwnPtr<WebGestureCurve>, WebGestureCurveTarget*);
47 static PassOwnPtr<WebActiveGestureAnimation> createWithTimeOffset(PassOwnPtr<WebGestureCurve>, WebGestureCurveTarget*, double startTime);
54 WebActiveGestureAnimation(PassOwnPtr<WebGestureCurve>, WebGestureCurveTarget*, double startTime, bool waitingForFirstTick);
58 OwnPtr<WebGestureCurve> m_curve;
WebActiveGestureAnimation.cpp 29 #include "public/platform/WebGestureCurve.h"
34 PassOwnPtr<WebActiveGestureAnimation> WebActiveGestureAnimation::createAtAnimationStart(PassOwnPtr<WebGestureCurve> curve, WebGestureCurveTarget* target)
39 PassOwnPtr<WebActiveGestureAnimation> WebActiveGestureAnimation::createWithTimeOffset(PassOwnPtr<WebGestureCurve> curve, WebGestureCurveTarget* target, double startTime)
48 WebActiveGestureAnimation::WebActiveGestureAnimation(PassOwnPtr<WebGestureCurve> curve, WebGestureCurveTarget* target, double startTime, bool waitingForFirstTick)
  /external/chromium_org/content/renderer/input/
input_handler_proxy_client.h 9 class WebGestureCurve;
32 virtual blink::WebGestureCurve* CreateFlingAnimationCurve(
input_handler_wrapper.h 32 virtual blink::WebGestureCurve* CreateFlingAnimationCurve(
input_handler_proxy.h 13 #include "third_party/WebKit/public/platform/WebGestureCurve.h"
80 scoped_ptr<blink::WebGestureCurve> fling_curve_;
input_handler_wrapper.cc 44 blink::WebGestureCurve* InputHandlerWrapper::CreateFlingAnimationCurve(
input_handler_proxy_unittest.cc 16 #include "third_party/WebKit/public/platform/WebGestureCurve.h"
127 // A simple WebGestureCurve implementation that flings at a constant velocity
129 class FakeWebGestureCurve : public blink::WebGestureCurve {
168 virtual blink::WebGestureCurve* CreateFlingAnimationCurve(
    [all...]
  /external/chromium_org/content/child/
fling_curve_configuration.h 15 class WebGestureCurve;
28 blink::WebGestureCurve* CreateForTouchPad(
33 blink::WebGestureCurve* CreateForTouchScreen(
43 blink::WebGestureCurve* CreateCore(
touch_fling_gesture_curve.h 11 #include "third_party/WebKit/public/platform/WebGestureCurve.h"
20 // Implementation of WebGestureCurve suitable for touch pad/screen-based
24 class TouchFlingGestureCurve : public blink::WebGestureCurve {
27 static CONTENT_EXPORT WebGestureCurve* Create(
fling_animator_impl_android.h 10 #include "third_party/WebKit/public/platform/WebGestureCurve.h"
21 class FlingAnimatorImpl : public blink::WebGestureCurve {
fling_curve_configuration.cc 9 #include "third_party/WebKit/public/platform/WebGestureCurve.h"
27 blink::WebGestureCurve* FlingCurveConfiguration::CreateCore(
44 blink::WebGestureCurve* FlingCurveConfiguration::CreateForTouchPad(
50 blink::WebGestureCurve* FlingCurveConfiguration::CreateForTouchScreen(
touch_fling_gesture_curve_unittest.cc 13 #include "third_party/WebKit/public/platform/WebGestureCurve.h"
19 using blink::WebGestureCurve;
52 scoped_ptr<WebGestureCurve> curve(content::TouchFlingGestureCurve::Create(
touch_fling_gesture_curve.cc 13 #include "third_party/WebKit/public/platform/WebGestureCurve.h"
19 using blink::WebGestureCurve;
69 WebGestureCurve* TouchFlingGestureCurve::Create(
blink_platform_impl.h 143 virtual blink::WebGestureCurve* createFlingAnimationCurve(
blink_platform_impl.cc     [all...]
  /external/chromium_org/content/test/
web_gesture_curve_mock.h 10 #include "third_party/WebKit/public/platform/WebGestureCurve.h"
13 // A simple class for mocking a WebGestureCurve. The curve flings at velocity
15 class WebGestureCurveMock : public blink::WebGestureCurve {
test_webkit_platform_support.h 70 virtual blink::WebGestureCurve* createFlingAnimationCurve(
test_webkit_platform_support.cc 226 blink::WebGestureCurve* TestWebKitPlatformSupport::createFlingAnimationCurve(
  /external/chromium_org/third_party/WebKit/Source/web/
WebViewImpl.cpp 113 #include "public/platform/WebGestureCurve.h"
638 OwnPtr<WebGestureCurve> flingCurve = adoptPtr(Platform::current()->createFlingAnimationCurve(event.sourceDevice, WebFloatPoint(event.data.flingStart.velocityX, event.data.flingStart.velocityY), WebSize()));
786 OwnPtr<WebGestureCurve> curve = adoptPtr(Platform::current()->createFlingAnimationCurve(parameters.sourceDevice, WebFloatPoint(parameters.delta), parameters.cumulativeScroll));
    [all...]

Completed in 355 milliseconds