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

Unified Diff: cc/animation/animation_events.h

Issue 1922833002: CC Animation: Start replacing int layer_id with ElementId element_id. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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
« no previous file with comments | « no previous file | cc/animation/animation_events.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/animation/animation_events.h
diff --git a/cc/animation/animation_events.h b/cc/animation/animation_events.h
index f4728ba6f6b44b0a6caa32b1e06887cbb3668830..fc0c41e9d1cf921a5279fbba075f55d1e488bc58 100644
--- a/cc/animation/animation_events.h
+++ b/cc/animation/animation_events.h
@@ -12,6 +12,7 @@
#include "cc/animation/animation_curve.h"
#include "cc/base/cc_export.h"
#include "cc/output/filter_operations.h"
+#include "cc/trees/mutator_host_client.h"
#include "ui/gfx/transform.h"
namespace cc {
@@ -20,7 +21,7 @@ struct CC_EXPORT AnimationEvent {
enum Type { STARTED, FINISHED, ABORTED, PROPERTY_UPDATE, TAKEOVER };
AnimationEvent(Type type,
- int layer_id,
+ ElementId element_id,
int group_id,
TargetProperty::Type target_property,
base::TimeTicks monotonic_time);
@@ -31,7 +32,7 @@ struct CC_EXPORT AnimationEvent {
~AnimationEvent();
Type type;
- int layer_id;
+ ElementId element_id;
int group_id;
TargetProperty::Type target_property;
base::TimeTicks monotonic_time;
« no previous file with comments | « no previous file | cc/animation/animation_events.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698