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 @@
namespace cc {
struct AnimationEvent;
class CC_EXPORT LayerAnimationEventObserver {
public:
virtual void OnAnimationStarted(const AnimationEvent& event) = 0;
......
......@@ -7,9 +7,14 @@
#include "cc/base/cc_export.h"
namespace gfx {
class ScrollOffset;
class Transform;
}
namespace cc {
class ScrollOffset;
class FilterOperations;
class CC_EXPORT LayerAnimationValueObserver {
public:
......
......@@ -7,9 +7,11 @@
#include "cc/base/cc_export.h"
namespace cc {
namespace gfx {
class ScrollOffset;
}
namespace cc {
// A LayerAnimationValueProvider is used for determining the starting value
// 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