| 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 28 matching lines...) Expand all Loading... |
| 39 #include "wtf/Vector.h" | 39 #include "wtf/Vector.h" |
| 40 | 40 |
| 41 namespace blink { | 41 namespace blink { |
| 42 | 42 |
| 43 class CSSAnimations; | 43 class CSSAnimations; |
| 44 class RenderObject; | 44 class RenderObject; |
| 45 class Element; | 45 class Element; |
| 46 | 46 |
| 47 typedef HashCountedSet<RawPtr<AnimationPlayer> > AnimationPlayerCountedSet; | 47 typedef HashCountedSet<RawPtr<AnimationPlayer> > AnimationPlayerCountedSet; |
| 48 | 48 |
| 49 class ActiveAnimations : public DummyBase<ActiveAnimations> { | 49 class ActiveAnimations { |
| 50 WTF_MAKE_NONCOPYABLE(ActiveAnimations); | 50 WTF_MAKE_NONCOPYABLE(ActiveAnimations); |
| 51 public: | 51 public: |
| 52 ActiveAnimations() | 52 ActiveAnimations() |
| 53 : m_animationStyleChange(false) | 53 : m_animationStyleChange(false) |
| 54 { | 54 { |
| 55 } | 55 } |
| 56 | 56 |
| 57 ~ActiveAnimations(); | 57 ~ActiveAnimations(); |
| 58 | 58 |
| 59 // Animations that are currently active for this element, their effects will
be applied | 59 // Animations that are currently active for this element, their effects will
be applied |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 Vector<Animation*> m_animations; | 97 Vector<Animation*> m_animations; |
| 98 #endif | 98 #endif |
| 99 | 99 |
| 100 // CSSAnimations checks if a style change is due to animation. | 100 // CSSAnimations checks if a style change is due to animation. |
| 101 friend class CSSAnimations; | 101 friend class CSSAnimations; |
| 102 }; | 102 }; |
| 103 | 103 |
| 104 } // namespace blink | 104 } // namespace blink |
| 105 | 105 |
| 106 #endif | 106 #endif |
| OLD | NEW |