Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(626)

Side by Side Diff: public/platform/WebLayer.h

Issue 412123002: Rename WebAnimation to WebCompositorAnimation (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2011 Google Inc. All rights reserved. 2 * Copyright (C) 2011 Google 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 * 7 *
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the 11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution. 12 * documentation and/or other materials provided with the distribution.
13 * 13 *
14 * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY 14 * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
15 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 15 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
16 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 16 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
17 * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY 17 * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
18 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 18 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
19 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 19 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
20 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND 20 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
21 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 21 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24 */ 24 */
25 25
26 #ifndef WebLayer_h 26 #ifndef WebLayer_h
27 #define WebLayer_h 27 #define WebLayer_h
28 28
29 #include "WebAnimation.h"
30 #include "WebBlendMode.h" 29 #include "WebBlendMode.h"
31 #include "WebColor.h" 30 #include "WebColor.h"
32 #include "WebCommon.h" 31 #include "WebCommon.h"
33 #include "WebCompositorAnimationDelegate.h" 32 #include "WebCompositorAnimation.h"
34 #include "WebFloatPoint3D.h" 33 #include "WebFloatPoint3D.h"
35 #include "WebPoint.h" 34 #include "WebPoint.h"
36 #include "WebRect.h" 35 #include "WebRect.h"
37 #include "WebSize.h" 36 #include "WebSize.h"
38 #include "WebString.h" 37 #include "WebString.h"
39 #include "WebVector.h" 38 #include "WebVector.h"
40 39
41 class SkMatrix44; 40 class SkMatrix44;
42 class SkImageFilter; 41 class SkImageFilter;
43 42
44 namespace blink { 43 namespace blink {
45 44 class WebCompositorAnimationDelegate;
46 class WebFilterOperations; 45 class WebFilterOperations;
47 class WebLayerClient; 46 class WebLayerClient;
48 class WebLayerScrollClient; 47 class WebLayerScrollClient;
49 struct WebFloatPoint; 48 struct WebFloatPoint;
50 struct WebFloatRect; 49 struct WebFloatRect;
51 struct WebLayerPositionConstraint; 50 struct WebLayerPositionConstraint;
52 51
53 class WebLayer { 52 class WebLayer {
54 public: 53 public:
55 virtual ~WebLayer() { } 54 virtual ~WebLayer() { }
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
125 virtual WebColor backgroundColor() const = 0; 124 virtual WebColor backgroundColor() const = 0;
126 125
127 // Clear the filters in use by passing in a newly instantiated 126 // Clear the filters in use by passing in a newly instantiated
128 // WebFilterOperations object. 127 // WebFilterOperations object.
129 virtual void setFilters(const WebFilterOperations&) = 0; 128 virtual void setFilters(const WebFilterOperations&) = 0;
130 129
131 // An animation delegate is notified when animations are started and 130 // An animation delegate is notified when animations are started and
132 // stopped. The WebLayer does not take ownership of the delegate, and it is 131 // stopped. The WebLayer does not take ownership of the delegate, and it is
133 // the responsibility of the client to reset the layer's delegate before 132 // the responsibility of the client to reset the layer's delegate before
134 // deleting the delegate. 133 // deleting the delegate.
135 virtual void setAnimationDelegate(WebAnimationDelegate*) = 0; 134 virtual void setAnimationDelegate(WebCompositorAnimationDelegate*) = 0;
136 135
137 136
138 // Returns false if the animation cannot be added. 137 // Returns false if the animation cannot be added.
139 // Takes ownership of the WebAnimation object. 138 // Takes ownership of the WebCompositorAnimation object.
140 virtual bool addAnimation(WebCompositorAnimation*) = 0; 139 virtual bool addAnimation(WebCompositorAnimation*) = 0;
141 140
142 // Removes all animations with the given id. 141 // Removes all animations with the given id.
143 virtual void removeAnimation(int animationId) = 0; 142 virtual void removeAnimation(int animationId) = 0;
144 143
145 // Removes all animations with the given id targeting the given property. 144 // Removes all animations with the given id targeting the given property.
146 virtual void removeAnimation(int animationId, WebAnimation::TargetProperty) = 0; 145 virtual void removeAnimation(int animationId, WebCompositorAnimation::Target Property) = 0;
147 146
148 // Pauses all animations with the given id. 147 // Pauses all animations with the given id.
149 virtual void pauseAnimation(int animationId, double timeOffset) = 0; 148 virtual void pauseAnimation(int animationId, double timeOffset) = 0;
150 149
151 // Returns true if this layer has any active animations - useful for tests. 150 // Returns true if this layer has any active animations - useful for tests.
152 virtual bool hasActiveAnimation() = 0; 151 virtual bool hasActiveAnimation() = 0;
153 152
154 // If a scroll parent is set, this layer will inherit its parent's scroll 153 // If a scroll parent is set, this layer will inherit its parent's scroll
155 // delta and offset even though it will not be a descendant of the scroll 154 // delta and offset even though it will not be a descendant of the scroll
156 // in the layer hierarchy. 155 // in the layer hierarchy.
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
208 207
209 // True if the layer is not part of a tree attached to a WebLayerTreeView. 208 // True if the layer is not part of a tree attached to a WebLayerTreeView.
210 virtual bool isOrphan() const = 0; 209 virtual bool isOrphan() const = 0;
211 210
212 virtual void setWebLayerClient(WebLayerClient*) = 0; 211 virtual void setWebLayerClient(WebLayerClient*) = 0;
213 }; 212 };
214 213
215 } // namespace blink 214 } // namespace blink
216 215
217 #endif // WebLayer_h 216 #endif // WebLayer_h
OLDNEW
« no previous file with comments | « public/platform/WebFloatAnimationCurve.h ('k') | public/platform/WebScrollOffsetAnimationCurve.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698