Chromium Code Reviews| Index: third_party/WebKit/Source/core/animation/ElementAnimations.cpp |
| diff --git a/third_party/WebKit/Source/core/animation/ElementAnimations.cpp b/third_party/WebKit/Source/core/animation/ElementAnimations.cpp |
| index 1b1365022d6f33212668e0083d7f227ec7e44768..ba3fabd1c17b29c44541f59242c988b50bec03f7 100644 |
| --- a/third_party/WebKit/Source/core/animation/ElementAnimations.cpp |
| +++ b/third_party/WebKit/Source/core/animation/ElementAnimations.cpp |
| @@ -34,8 +34,11 @@ |
| namespace blink { |
| +static CompositorElementId s_nextCompositorElementId = 1; |
|
esprehn
2016/05/10 22:46:57
You should use DOMNodeIds, why can't you allocate
loyso (OOO)
2016/05/12 05:55:39
Not every Compositor Animation subsystem has assoc
|
| + |
| ElementAnimations::ElementAnimations() |
| - : m_animationStyleChange(false) |
| + : m_compositorElementId(s_nextCompositorElementId++) |
| + , m_animationStyleChange(false) |
| { |
| } |