OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2009, 2010, 2011 Apple Inc. All rights reserved. | 2 * Copyright (C) 2009, 2010, 2011 Apple Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
6 * are met: | 6 * are met: |
7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
119 void setContentsNeedDisplayInRect(const IntRect&); | 119 void setContentsNeedDisplayInRect(const IntRect&); |
120 | 120 |
121 // Notification from the renderer that its content changed. | 121 // Notification from the renderer that its content changed. |
122 void contentChanged(ContentChangeType); | 122 void contentChanged(ContentChangeType); |
123 | 123 |
124 // Interface to start, finish, suspend and resume animations and transitions | 124 // Interface to start, finish, suspend and resume animations and transitions |
125 bool startTransition(double, CSSPropertyID, const RenderStyle* fromStyle, co
nst RenderStyle* toStyle); | 125 bool startTransition(double, CSSPropertyID, const RenderStyle* fromStyle, co
nst RenderStyle* toStyle); |
126 void transitionPaused(double timeOffset, CSSPropertyID); | 126 void transitionPaused(double timeOffset, CSSPropertyID); |
127 void transitionFinished(CSSPropertyID); | 127 void transitionFinished(CSSPropertyID); |
128 | 128 |
129 bool startAnimation(double timeOffset, const Animation* anim, const Keyframe
List& keyframes); | 129 bool startAnimation(double timeOffset, const CSSAnimationData* anim, const K
eyframeList& keyframes); |
130 void animationPaused(double timeOffset, const String& name); | 130 void animationPaused(double timeOffset, const String& name); |
131 void animationFinished(const String& name); | 131 void animationFinished(const String& name); |
132 | 132 |
133 void suspendAnimations(double time = 0); | 133 void suspendAnimations(double time = 0); |
134 void resumeAnimations(); | 134 void resumeAnimations(); |
135 | 135 |
136 IntRect compositedBounds() const; | 136 IntRect compositedBounds() const; |
137 void setCompositedBounds(const IntRect&); | 137 void setCompositedBounds(const IntRect&); |
138 void updateCompositedBounds(); | 138 void updateCompositedBounds(); |
139 | 139 |
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
273 bool m_boundsConstrainedByClipping; | 273 bool m_boundsConstrainedByClipping; |
274 bool m_isMainFrameRenderViewLayer; | 274 bool m_isMainFrameRenderViewLayer; |
275 bool m_requiresOwnBackingStore; | 275 bool m_requiresOwnBackingStore; |
276 bool m_canCompositeFilters; | 276 bool m_canCompositeFilters; |
277 bool m_backgroundLayerPaintsFixedRootBackground; | 277 bool m_backgroundLayerPaintsFixedRootBackground; |
278 }; | 278 }; |
279 | 279 |
280 } // namespace WebCore | 280 } // namespace WebCore |
281 | 281 |
282 #endif // RenderLayerBacking_h | 282 #endif // RenderLayerBacking_h |
OLD | NEW |