Commit 4ec93bab authored by lof84's avatar lof84 Committed by Commit bot

Fix forward declarations

Fix forward declarations in cc/animation/

R=vollick@chromium.org

Review URL: https://codereview.chromium.org/826453002

Cr-Commit-Position: refs/heads/master@{#309570}
parent 1454e0ce
...@@ -9,6 +9,8 @@ ...@@ -9,6 +9,8 @@
namespace cc { namespace cc {
struct AnimationEvent;
class CC_EXPORT LayerAnimationEventObserver { class CC_EXPORT LayerAnimationEventObserver {
public: public:
virtual void OnAnimationStarted(const AnimationEvent& event) = 0; virtual void OnAnimationStarted(const AnimationEvent& event) = 0;
......
...@@ -7,9 +7,14 @@ ...@@ -7,9 +7,14 @@
#include "cc/base/cc_export.h" #include "cc/base/cc_export.h"
namespace gfx {
class ScrollOffset;
class Transform;
}
namespace cc { namespace cc {
class ScrollOffset; class FilterOperations;
class CC_EXPORT LayerAnimationValueObserver { class CC_EXPORT LayerAnimationValueObserver {
public: public:
......
...@@ -7,9 +7,11 @@ ...@@ -7,9 +7,11 @@
#include "cc/base/cc_export.h" #include "cc/base/cc_export.h"
namespace cc { namespace gfx {
class ScrollOffset; class ScrollOffset;
}
namespace cc {
// A LayerAnimationValueProvider is used for determining the starting value // A LayerAnimationValueProvider is used for determining the starting value
// for animations that start at their 'current' value rather than at a // for animations that start at their 'current' value rather than at a
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment