| Index: Source/core/rendering/CompositedLayerMapping.h
|
| diff --git a/Source/core/rendering/CompositedLayerMapping.h b/Source/core/rendering/CompositedLayerMapping.h
|
| index b096a7664be0a277983a1d739c9716628c094704..d3e051bde6eb3c9a1f6452af57eaa11ee6be90ed 100644
|
| --- a/Source/core/rendering/CompositedLayerMapping.h
|
| +++ b/Source/core/rendering/CompositedLayerMapping.h
|
| @@ -37,7 +37,6 @@ namespace WebCore {
|
|
|
| class KeyframeList;
|
| class RenderLayerCompositor;
|
| -class WebAnimationProvider;
|
|
|
| enum CompositingLayerType {
|
| NormalCompositingLayer, // non-tiled layer with backing store
|
| @@ -145,15 +144,6 @@ public:
|
| // Notification from the renderer that its content changed.
|
| void contentChanged(ContentChangeType);
|
|
|
| - // Interface to start, finish, suspend and resume animations and transitions
|
| - bool startTransition(double, CSSPropertyID, const RenderStyle* fromStyle, const RenderStyle* toStyle);
|
| - void transitionPaused(double timeOffset, CSSPropertyID);
|
| - void transitionFinished(CSSPropertyID);
|
| -
|
| - bool startAnimation(double timeOffset, const CSSAnimationData*, const KeyframeList& keyframes);
|
| - void animationPaused(double timeOffset, const String& name);
|
| - void animationFinished(const String& name);
|
| -
|
| LayoutRect compositedBounds() const;
|
| void setCompositedBounds(const LayoutRect&);
|
| void updateCompositedBounds();
|
| @@ -339,8 +329,6 @@ private:
|
| OwnPtr<GraphicsLayer> m_layerForVerticalScrollbar;
|
| OwnPtr<GraphicsLayer> m_layerForScrollCorner;
|
|
|
| - OwnPtr<WebAnimationProvider> m_animationProvider;
|
| -
|
| OwnPtr<GraphicsLayer> m_squashingContainmentLayer; // Only used if any squashed layers exist, to contain the squashed layers as siblings to the rest of the GraphicsLayer tree chunk.
|
| OwnPtr<GraphicsLayer> m_squashingLayer; // Only used if any squashed layers exist, this is the backing that squashed layers paint into.
|
| Vector<GraphicsLayerPaintInfo> m_squashedLayers;
|
|
|