| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 | 33 |
| 34 #include "core/animation/InertEffect.h" | 34 #include "core/animation/InertEffect.h" |
| 35 #include "core/animation/Interpolation.h" | 35 #include "core/animation/Interpolation.h" |
| 36 #include "core/animation/css/CSSAnimationData.h" | 36 #include "core/animation/css/CSSAnimationData.h" |
| 37 #include "core/animation/css/CSSAnimationUpdate.h" | 37 #include "core/animation/css/CSSAnimationUpdate.h" |
| 38 #include "core/css/CSSKeyframesRule.h" | 38 #include "core/css/CSSKeyframesRule.h" |
| 39 #include "core/css/StylePropertySet.h" | 39 #include "core/css/StylePropertySet.h" |
| 40 #include "core/css/resolver/StyleResolverState.h" | 40 #include "core/css/resolver/StyleResolverState.h" |
| 41 #include "core/dom/Document.h" | 41 #include "core/dom/Document.h" |
| 42 #include "core/dom/Element.h" | 42 #include "core/dom/Element.h" |
| 43 #include "wtf/HashMap.h" | 43 #include "platform/wtf/HashMap.h" |
| 44 #include "wtf/text/AtomicString.h" | 44 #include "platform/wtf/text/AtomicString.h" |
| 45 | 45 |
| 46 namespace blink { | 46 namespace blink { |
| 47 | 47 |
| 48 class CSSTransitionData; | 48 class CSSTransitionData; |
| 49 class Element; | 49 class Element; |
| 50 class StylePropertyShorthand; | 50 class StylePropertyShorthand; |
| 51 class StyleResolver; | 51 class StyleResolver; |
| 52 | 52 |
| 53 class CSSAnimations final { | 53 class CSSAnimations final { |
| 54 WTF_MAKE_NONCOPYABLE(CSSAnimations); | 54 WTF_MAKE_NONCOPYABLE(CSSAnimations); |
| (...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 240 | 240 |
| 241 Member<Element> m_transitionTarget; | 241 Member<Element> m_transitionTarget; |
| 242 PropertyHandle m_property; | 242 PropertyHandle m_property; |
| 243 AnimationEffectReadOnly::Phase m_previousPhase; | 243 AnimationEffectReadOnly::Phase m_previousPhase; |
| 244 }; | 244 }; |
| 245 }; | 245 }; |
| 246 | 246 |
| 247 } // namespace blink | 247 } // namespace blink |
| 248 | 248 |
| 249 #endif | 249 #endif |
| OLD | NEW |