OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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
69
class
WebGestureCurve
;
525
virtual
WebGestureCurve
* createFlingAnimationCurve(int deviceSource, const WebFloatPoint& velocity, const WebSize& cumulativeScroll) { return 0; }
/external/chromium_org/third_party/WebKit/Source/core/platform/chromium/support/
WebActiveGestureAnimation.h
35
class
WebGestureCurve
;
45
static PassOwnPtr<WebActiveGestureAnimation> createAtAnimationStart(PassOwnPtr<
WebGestureCurve
>, WebGestureCurveTarget*);
46
static PassOwnPtr<WebActiveGestureAnimation> createWithTimeOffset(PassOwnPtr<
WebGestureCurve
>, WebGestureCurveTarget*, double startTime);
53
WebActiveGestureAnimation(PassOwnPtr<
WebGestureCurve
>, WebGestureCurveTarget*, double startTime, bool waitingForFirstTick);
57
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/gpu/
input_handler_proxy_client.h
9
class
WebGestureCurve
;
30
virtual WebKit::
WebGestureCurve
* CreateFlingAnimationCurve(
input_handler_wrapper.h
34
virtual WebKit::
WebGestureCurve
* CreateFlingAnimationCurve(
input_handler_proxy.h
15
#include "third_party/WebKit/public/platform/
WebGestureCurve
.h"
68
scoped_ptr<WebKit::
WebGestureCurve
> fling_curve_;
input_handler_wrapper.cc
45
WebKit::
WebGestureCurve
* InputHandlerWrapper::CreateFlingAnimationCurve(
input_handler_proxy_unittest.cc
14
#include "third_party/WebKit/public/platform/
WebGestureCurve
.h"
80
// A simple
WebGestureCurve
implementation that flings at a constant velocity
82
class FakeWebGestureCurve : public WebKit::
WebGestureCurve
{
121
virtual WebKit::
WebGestureCurve
* CreateFlingAnimationCurve(
[
all
...]
/external/chromium_org/webkit/child/
fling_curve_configuration.h
15
class
WebGestureCurve
;
28
WebKit::
WebGestureCurve
* CreateForTouchPad(
33
WebKit::
WebGestureCurve
* CreateForTouchScreen(
43
WebKit::
WebGestureCurve
* CreateCore(
touch_fling_gesture_curve.h
10
#include "third_party/WebKit/public/platform/
WebGestureCurve
.h"
20
// Implementation of
WebGestureCurve
suitable for touch pad/screen-based
24
class TouchFlingGestureCurve : public WebKit::
WebGestureCurve
{
27
WEBKIT_CHILD_EXPORT static
WebGestureCurve
* Create(
fling_curve_configuration.cc
8
#include "third_party/WebKit/public/platform/
WebGestureCurve
.h"
27
WebKit::
WebGestureCurve
* FlingCurveConfiguration::CreateCore(
43
WebKit::
WebGestureCurve
* FlingCurveConfiguration::CreateForTouchPad(
49
WebKit::
WebGestureCurve
* FlingCurveConfiguration::CreateForTouchScreen(
fling_animator_impl_android.h
10
#include "third_party/WebKit/public/platform/
WebGestureCurve
.h"
22
class WEBKIT_CHILD_EXPORT FlingAnimatorImpl : public WebKit::
WebGestureCurve
{
touch_fling_gesture_curve_unittest.cc
13
#include "third_party/WebKit/public/platform/
WebGestureCurve
.h"
19
using WebKit::
WebGestureCurve
;
53
scoped_ptr<
WebGestureCurve
> curve(webkit_glue::TouchFlingGestureCurve::Create(
webkitplatformsupport_child_impl.h
41
virtual WebKit::
WebGestureCurve
* createFlingAnimationCurve(
touch_fling_gesture_curve.cc
13
#include "third_party/WebKit/public/platform/
WebGestureCurve
.h"
19
using WebKit::
WebGestureCurve
;
69
WebGestureCurve
* TouchFlingGestureCurve::Create(
webkitplatformsupport_child_impl.cc
43
WebKit::
WebGestureCurve
*
/external/chromium_org/webkit/support/
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 WebKit::
WebGestureCurve
{
test_webkit_platform_support.h
74
virtual WebKit::
WebGestureCurve
* createFlingAnimationCurve(
test_webkit_platform_support.cc
245
WebKit::
WebGestureCurve
* TestWebKitPlatformSupport::createFlingAnimationCurve(
/external/chromium_org/third_party/WebKit/Source/web/
WebViewImpl.cpp
37
#include "public/platform/
WebGestureCurve
.h"
675
OwnPtr<
WebGestureCurve
> flingCurve = adoptPtr(Platform::current()->createFlingAnimationCurve(event.sourceDevice, WebFloatPoint(event.data.flingStart.velocityX, event.data.flingStart.velocityY), WebSize()));
821
OwnPtr<
WebGestureCurve
> curve = adoptPtr(Platform::current()->createFlingAnimationCurve(parameters.sourceDevice, WebFloatPoint(parameters.delta), parameters.cumulativeScroll));
[
all
...]
Completed in 390 milliseconds