Chromium Code Reviews| Index: third_party/WebKit/public/platform/WebLayer.h |
| diff --git a/third_party/WebKit/public/platform/WebLayer.h b/third_party/WebKit/public/platform/WebLayer.h |
| index a0e21b27b97afc4ed9c85eadeeb1d3b8d6999549..fad1691b996b2c71078827497865288b920aea6f 100644 |
| --- a/third_party/WebKit/public/platform/WebLayer.h |
| +++ b/third_party/WebKit/public/platform/WebLayer.h |
| @@ -160,6 +160,9 @@ public: |
| // Pauses all animations with the given id. |
| virtual void pauseAnimation(int animationId, double timeOffset) = 0; |
| + // Aborts all animations with the given id. |
|
skobes
2015/12/18 19:05:58
Explain how aborting is different from removing.
ymalik
2015/12/18 19:35:47
Done.
|
| + virtual void abortAnimation(int animationId) = 0; |
| + |
| // Returns true if this layer has any active animations - useful for tests. |
| virtual bool hasActiveAnimation() = 0; |