/external/chromium_org/third_party/WebKit/public/platform/ |
WebAnimationDelegate.h | 28 #include "WebAnimation.h" 38 virtual void notifyAnimationStarted(double wallClockTime, double monotonicTime, WebAnimation::TargetProperty) = 0; 39 virtual void notifyAnimationFinished(double wallClockTime, double monotonicTime, WebAnimation::TargetProperty) = 0;
|
WebAnimation.h | 45 class WebAnimation { 53 virtual ~WebAnimation() { }
|
WebCompositorSupport.h | 29 #include "WebAnimation.h" 86 virtual WebAnimation* createAnimation(const WebAnimationCurve&, WebAnimation::TargetProperty, int animationId = 0) { return 0; }
|
WebLayer.h | 29 #include "WebAnimation.h" 148 // Takes ownership of the WebAnimation object. 149 virtual bool addAnimation(WebAnimation*) = 0; 155 virtual void removeAnimation(int animationId, WebAnimation::TargetProperty) = 0;
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/animation/ |
WebAnimationProvider.h | 37 class WebAnimation; 51 OwnPtr<blink::WebAnimation> m_transformAnimation; 52 OwnPtr<blink::WebAnimation> m_opacityAnimation; 53 OwnPtr<blink::WebAnimation> m_filterAnimation; 68 PassOwnPtr<blink::WebAnimation> createWebAnimationAndStoreId(const KeyframeValueList&, const IntSize& boxSize, const CSSAnimationData*, const String& animationName, double timeOffset);
|
WebAnimationProvider.cpp | 34 #include "public/platform/WebAnimation.h" 37 using blink::WebAnimation; 86 m_transformAnimation.swap(const_cast<OwnPtr<WebAnimation>& >(other.m_transformAnimation)); 87 m_opacityAnimation.swap(const_cast<OwnPtr<WebAnimation>& >(other.m_opacityAnimation)); 88 m_filterAnimation.swap(const_cast<OwnPtr<WebAnimation>& >(other.m_filterAnimation)); 202 PassOwnPtr<WebAnimation> WebAnimationProvider::createWebAnimationAndStoreId(const KeyframeValueList& values, const IntSize& boxSize, const CSSAnimationData* animation, const String& animationName, double timeOffset) 205 OwnPtr<WebAnimation> webAnimation(createWebAnimation(values, animation, animationId, timeOffset, boxSize)); 206 if (!webAnimation) 207 return PassOwnPtr<WebAnimation>(); [all...] |
/external/chromium_org/webkit/renderer/compositor_bindings/ |
web_animation_unittest.cc | 10 using blink::WebAnimation; 19 scoped_ptr<WebAnimation> animation( 20 new WebAnimationImpl(*curve, WebAnimation::TargetPropertyOpacity, 1, 0)); 31 scoped_ptr<WebAnimation> animation( 32 new WebAnimationImpl(*curve, WebAnimation::TargetPropertyOpacity, 1, 0));
|
web_to_cc_animation_delegate_adapter.cc | 22 static_cast<blink::WebAnimation::TargetProperty>(target_property)); 32 static_cast<blink::WebAnimation::TargetProperty>(target_property));
|
web_animation_impl.cc | 10 #include "third_party/WebKit/public/platform/WebAnimation.h" 19 using blink::WebAnimation; 66 blink::WebAnimation::TargetProperty WebAnimationImpl::targetProperty() const { 107 WebAnimation::TargetPropertyTransform, Animation::Transform); 109 WebAnimation::TargetPropertyOpacity, Animation::Opacity); 111 WebAnimation::TargetPropertyFilter, Animation::Filter);
|
web_compositor_support_impl.cc | 27 using blink::WebAnimation; 93 WebAnimation* WebCompositorSupportImpl::createAnimation( 95 blink::WebAnimation::TargetProperty target,
|
web_animation_impl.h | 9 #include "third_party/WebKit/public/platform/WebAnimation.h" 18 class WebAnimationImpl : public blink::WebAnimation { 27 // blink::WebAnimation implementation
|
web_compositor_support_impl.h | 40 virtual blink::WebAnimation* createAnimation( 42 blink::WebAnimation::TargetProperty target,
|
web_layer_impl.h | 13 #include "third_party/WebKit/public/platform/WebAnimation.h" 101 virtual bool addAnimation(blink::WebAnimation* animation); 104 blink::WebAnimation::TargetProperty);
|
web_layer_impl.cc | 213 bool WebLayerImpl::addAnimation(blink::WebAnimation* animation) { 226 blink::WebAnimation::TargetProperty target_property) {
|
/external/chromium_org/third_party/WebKit/Source/core/platform/animation/ |
AnimationTranslationUtil.h | 40 class WebAnimation; 51 // Translates WebCore animation data into a WebAnimation. If we are unable 56 PassOwnPtr<blink::WebAnimation> createWebAnimation(const KeyframeValueList&, const CSSAnimationData*, int animationId, double timeOffset, const FloatSize& boxSize);
|
AnimationTranslationUtil.cpp | 45 #include "public/platform/WebAnimation.h" 231 PassOwnPtr<blink::WebAnimation> createWebAnimation(const KeyframeValueList& valueList, const CSSAnimationData* animation, int animationId, double timeOffset, Curve* curve, blink::WebAnimation::TargetProperty targetProperty, const FloatSize& boxSize) 317 OwnPtr<blink::WebAnimation> webAnimation = adoptPtr(Platform::current()->compositorSupport()->createAnimation(*curve, targetProperty, animationId)); 320 webAnimation->setIterations(iterations); 321 webAnimation->setAlternatesDirection(alternate); 324 webAnimation->setTimeOffset(timeOffset); 326 return webAnimation.release(); 329 PassOwnPtr<blink::WebAnimation> createWebAnimation(const KeyframeValueList& values, const CSSAnimationData* animation, int animat (…) [all...] |
/external/chromium_org/third_party/WebKit/Source/core/animation/ |
CompositorAnimationsImpl.h | 35 #include "public/platform/WebAnimation.h" 53 static void getAnimationOnCompositor(const Timing&, const KeyframeAnimationEffect&, Vector<OwnPtr<blink::WebAnimation> >& animations);
|
CompositorAnimationsTestHelper.h | 68 class WebAnimationMock : public blink::WebAnimation { 70 blink::WebAnimation::TargetProperty m_property; 74 WebAnimationMock(blink::WebAnimation::TargetProperty p) : m_property(p) { } 75 virtual blink::WebAnimation::TargetProperty targetProperty() const { return m_property; }; 122 MOCK_METHOD3(createAnimation, blink::WebAnimation*(const blink::WebAnimationCurve& curve, blink::WebAnimation::TargetProperty target, int animationId));
|
CompositorAnimationsTest.cpp | 46 #include "public/platform/WebAnimation.h" 111 void getAnimationOnCompositor(Timing& timing, KeyframeAnimationEffect& effect, Vector<OwnPtr<blink::WebAnimation> >& animations) [all...] |
CompositorAnimations.cpp | 45 #include "public/platform/WebAnimation.h" 266 Vector<OwnPtr<blink::WebAnimation> > animations; 476 const Timing& timing, const KeyframeAnimationEffect& effect, Vector<OwnPtr<blink::WebAnimation> >& animations) 494 blink::WebAnimation::TargetProperty targetProperty; 498 targetProperty = blink::WebAnimation::TargetPropertyOpacity; 506 targetProperty = blink::WebAnimation::TargetPropertyFilter; 513 targetProperty = blink::WebAnimation::TargetPropertyTransform; 525 OwnPtr<blink::WebAnimation> animation = adoptPtr(blink::Platform::current()->compositorSupport()->createAnimation(*curve, targetProperty));
|
/external/chromium_org/third_party/WebKit/Source/web/ |
LinkHighlight.h | 64 virtual void notifyAnimationStarted(double wallClockTime, double monotonicTime, blink::WebAnimation::TargetProperty) OVERRIDE; 65 virtual void notifyAnimationFinished(double wallClockTime, double monotonicTime, blink::WebAnimation::TargetProperty) OVERRIDE;
|
LinkHighlight.cpp | 273 OwnPtr<WebAnimation> animation = adoptPtr(compositorSupport->createAnimation(*curve, WebAnimation::TargetPropertyOpacity)); 290 void LinkHighlight::notifyAnimationStarted(double, double, blink::WebAnimation::TargetProperty) 294 void LinkHighlight::notifyAnimationFinished(double, double, blink::WebAnimation::TargetProperty)
|
/external/chromium_org/third_party/WebKit/Source/platform/graphics/ |
GraphicsLayer.h | 54 class WebAnimation; 230 bool addAnimation(PassOwnPtr<blink::WebAnimation>); 299 virtual void notifyAnimationStarted(double wallClockTime, double monotonicTime, blink::WebAnimation::TargetProperty) OVERRIDE; 300 virtual void notifyAnimationFinished(double wallClockTime, double monotonicTime, blink::WebAnimation::TargetProperty) OVERRIDE;
|
GraphicsLayer.cpp | 41 #include "public/platform/WebAnimation.h" 60 using blink::WebAnimation; [all...] |
/external/chromium_org/third_party/WebKit/Source/web/tests/ |
GraphicsLayerTest.cpp | 97 OwnPtr<WebAnimation> floatAnimation(adoptPtr(Platform::current()->compositorSupport()->createAnimation(*curve, WebAnimation::TargetPropertyOpacity)));
|