| 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 "core/CSSPropertyNames.h" | 39 #include "core/CSSPropertyNames.h" |
| 40 #include "core/CoreExport.h" | 40 #include "core/CoreExport.h" |
| 41 #include "core/animation/AnimationEffectReadOnly.h" | 41 #include "core/animation/AnimationEffectReadOnly.h" |
| 42 #include "core/dom/ContextLifecycleObserver.h" | 42 #include "core/dom/ContextLifecycleObserver.h" |
| 43 #include "core/dom/DOMException.h" | 43 #include "core/dom/DOMException.h" |
| 44 #include "core/events/EventTarget.h" | 44 #include "core/events/EventTarget.h" |
| 45 #include "platform/animation/CompositorAnimationDelegate.h" | 45 #include "platform/animation/CompositorAnimationDelegate.h" |
| 46 #include "platform/animation/CompositorAnimationPlayerClient.h" | 46 #include "platform/animation/CompositorAnimationPlayerClient.h" |
| 47 #include "platform/graphics/CompositorElementId.h" | 47 #include "platform/graphics/CompositorElementId.h" |
| 48 #include "platform/heap/Handle.h" | 48 #include "platform/heap/Handle.h" |
| 49 #include "wtf/RefPtr.h" | 49 #include "platform/wtf/RefPtr.h" |
| 50 | 50 |
| 51 namespace blink { | 51 namespace blink { |
| 52 | 52 |
| 53 class AnimationTimeline; | 53 class AnimationTimeline; |
| 54 class CompositorAnimationPlayer; | 54 class CompositorAnimationPlayer; |
| 55 class Element; | 55 class Element; |
| 56 class ExceptionState; | 56 class ExceptionState; |
| 57 class TreeScope; | 57 class TreeScope; |
| 58 | 58 |
| 59 class CORE_EXPORT Animation final : public EventTargetWithInlineData, | 59 class CORE_EXPORT Animation final : public EventTargetWithInlineData, |
| (...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 344 | 344 |
| 345 bool m_currentTimePending; | 345 bool m_currentTimePending; |
| 346 bool m_stateIsBeingUpdated; | 346 bool m_stateIsBeingUpdated; |
| 347 | 347 |
| 348 bool m_effectSuppressed; | 348 bool m_effectSuppressed; |
| 349 }; | 349 }; |
| 350 | 350 |
| 351 } // namespace blink | 351 } // namespace blink |
| 352 | 352 |
| 353 #endif // Animation_h | 353 #endif // Animation_h |
| OLD | NEW |