diff options
author | wolfbeast <mcwerewolf@wolfbeast.com> | 2020-04-18 15:10:34 +0200 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2020-04-24 10:32:03 +0200 |
commit | 9d96ad90dda81f202826cb6ec1535561f14218db (patch) | |
tree | f8b9c3328fd3a59ab5d5fe5effe0f6ed2f0a49d2 /dom/animation/KeyframeEffectReadOnly.cpp | |
parent | b064c95231d34eddf350bb5624faa2c60c659630 (diff) | |
download | UXP-9d96ad90dda81f202826cb6ec1535561f14218db.tar UXP-9d96ad90dda81f202826cb6ec1535561f14218db.tar.gz UXP-9d96ad90dda81f202826cb6ec1535561f14218db.tar.lz UXP-9d96ad90dda81f202826cb6ec1535561f14218db.tar.xz UXP-9d96ad90dda81f202826cb6ec1535561f14218db.zip |
Issue #80 - De-unify dom/animation
KeyFrameEffect and KeyFrameEffectReadOnly are still built unified as
buddies because they have some complex interdependency that couldn't
easily be resolved without linking failures.
Diffstat (limited to 'dom/animation/KeyframeEffectReadOnly.cpp')
-rw-r--r-- | dom/animation/KeyframeEffectReadOnly.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/dom/animation/KeyframeEffectReadOnly.cpp b/dom/animation/KeyframeEffectReadOnly.cpp index 639e0b2b0..95f657449 100644 --- a/dom/animation/KeyframeEffectReadOnly.cpp +++ b/dom/animation/KeyframeEffectReadOnly.cpp @@ -6,6 +6,7 @@ #include "mozilla/dom/KeyframeEffectReadOnly.h" +#include "mozilla/dom/Animation.h" #include "mozilla/dom/KeyframeAnimationOptionsBinding.h" // For UnrestrictedDoubleOrKeyframeAnimationOptions; #include "mozilla/dom/CSSPseudoElement.h" @@ -25,6 +26,7 @@ #include "nsCSSPseudoElements.h" // For CSSPseudoElementType #include "nsIPresShell.h" #include "nsIScriptError.h" +#include "nsRefreshDriver.h" namespace mozilla { |