Index: cc/blink/web_to_cc_animation_delegate_adapter.h |
diff --git a/cc/blink/web_to_cc_animation_delegate_adapter.h b/cc/blink/web_to_cc_animation_delegate_adapter.h |
index 343afa51c230be85f7eeb78895f489525e796639..d9580f2556753c75833b7064010f445fa32e413c 100644 |
--- a/cc/blink/web_to_cc_animation_delegate_adapter.h |
+++ b/cc/blink/web_to_cc_animation_delegate_adapter.h |
@@ -22,13 +22,14 @@ class WebToCCAnimationDelegateAdapter : public cc::AnimationDelegate { |
private: |
void NotifyAnimationStarted(base::TimeTicks monotonic_time, |
- cc::Animation::TargetProperty target_property, |
+ cc::AnimationTargetProperty::Enum target_property, |
int group) override; |
- void NotifyAnimationFinished(base::TimeTicks monotonic_time, |
- cc::Animation::TargetProperty target_property, |
- int group) override; |
+ void NotifyAnimationFinished( |
+ base::TimeTicks monotonic_time, |
+ cc::AnimationTargetProperty::Enum target_property, |
+ int group) override; |
void NotifyAnimationAborted(base::TimeTicks monotonic_time, |
- cc::Animation::TargetProperty target_property, |
+ cc::AnimationTargetProperty::Enum target_property, |
int group) override; |
blink::WebCompositorAnimationDelegate* delegate_; |