| 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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 #include "wtf/RefPtr.h" | 47 #include "wtf/RefPtr.h" |
| 48 | 48 |
| 49 namespace blink { | 49 namespace blink { |
| 50 | 50 |
| 51 class AnimationTimeline; | 51 class AnimationTimeline; |
| 52 class CompositorAnimationPlayer; | 52 class CompositorAnimationPlayer; |
| 53 class Element; | 53 class Element; |
| 54 class ExceptionState; | 54 class ExceptionState; |
| 55 | 55 |
| 56 class CORE_EXPORT Animation final | 56 class CORE_EXPORT Animation final |
| 57 : public RefCountedGarbageCollectedEventTargetWithInlineData<Animation> | 57 : public EventTargetWithInlineData |
| 58 , public ActiveScriptWrappable | 58 , public ActiveScriptWrappable |
| 59 , public ActiveDOMObject | 59 , public ActiveDOMObject |
| 60 , public CompositorAnimationDelegate | 60 , public CompositorAnimationDelegate |
| 61 , public CompositorAnimationPlayerClient { | 61 , public CompositorAnimationPlayerClient { |
| 62 DEFINE_WRAPPERTYPEINFO(); | 62 DEFINE_WRAPPERTYPEINFO(); |
| 63 REFCOUNTED_GARBAGE_COLLECTED_EVENT_TARGET(Animation); | 63 REFCOUNTED_GARBAGE_COLLECTED_EVENT_TARGET(Animation); |
| 64 USING_GARBAGE_COLLECTED_MIXIN(Animation); | 64 USING_GARBAGE_COLLECTED_MIXIN(Animation); |
| 65 public: | 65 public: |
| 66 enum AnimationPlayState { | 66 enum AnimationPlayState { |
| 67 Unset, | 67 Unset, |
| (...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 303 | 303 |
| 304 bool m_currentTimePending; | 304 bool m_currentTimePending; |
| 305 bool m_stateIsBeingUpdated; | 305 bool m_stateIsBeingUpdated; |
| 306 | 306 |
| 307 bool m_effectSuppressed; | 307 bool m_effectSuppressed; |
| 308 }; | 308 }; |
| 309 | 309 |
| 310 } // namespace blink | 310 } // namespace blink |
| 311 | 311 |
| 312 #endif // Animation_h | 312 #endif // Animation_h |
| OLD | NEW |