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

Unified Diff: cc/animation/animation_delegate.h

Issue 1698813002: CC Animation: Expose TargetProperty enum to be aliased in Blink Platform. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Use custom hash in unordered_set. Created 4 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: cc/animation/animation_delegate.h
diff --git a/cc/animation/animation_delegate.h b/cc/animation/animation_delegate.h
index 6064c7ebc83b03e7ed597a2ec09db52309020764..bd51ec0fe157e3e695953081fc158484d0efd5d4 100644
--- a/cc/animation/animation_delegate.h
+++ b/cc/animation/animation_delegate.h
@@ -13,15 +13,14 @@ namespace cc {
class CC_EXPORT AnimationDelegate {
public:
virtual void NotifyAnimationStarted(base::TimeTicks monotonic_time,
- Animation::TargetProperty target_property,
+ AnimationTargetProperty target_property,
int group) = 0;
- virtual void NotifyAnimationFinished(
- base::TimeTicks monotonic_time,
- Animation::TargetProperty target_property,
- int group) = 0;
+ virtual void NotifyAnimationFinished(base::TimeTicks monotonic_time,
+ AnimationTargetProperty target_property,
+ int group) = 0;
virtual void NotifyAnimationAborted(base::TimeTicks monotonic_time,
- Animation::TargetProperty target_property,
+ AnimationTargetProperty target_property,
int group) = 0;
protected:

Powered by Google App Engine
This is Rietveld 408576698