| 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 21 matching lines...) Expand all Loading... |
| 32 #define Animation_h | 32 #define Animation_h |
| 33 | 33 |
| 34 #include "bindings/core/v8/ScriptPromise.h" | 34 #include "bindings/core/v8/ScriptPromise.h" |
| 35 #include "bindings/core/v8/ScriptPromiseProperty.h" | 35 #include "bindings/core/v8/ScriptPromiseProperty.h" |
| 36 #include "core/CSSPropertyNames.h" | 36 #include "core/CSSPropertyNames.h" |
| 37 #include "core/CoreExport.h" | 37 #include "core/CoreExport.h" |
| 38 #include "core/animation/AnimationEffect.h" | 38 #include "core/animation/AnimationEffect.h" |
| 39 #include "core/dom/ActiveDOMObject.h" | 39 #include "core/dom/ActiveDOMObject.h" |
| 40 #include "core/dom/DOMException.h" | 40 #include "core/dom/DOMException.h" |
| 41 #include "core/events/EventTarget.h" | 41 #include "core/events/EventTarget.h" |
| 42 #include "platform/animation/WebCompositorAnimationPlayerClient.h" |
| 42 #include "platform/heap/Handle.h" | 43 #include "platform/heap/Handle.h" |
| 43 #include "public/platform/WebCompositorAnimationDelegate.h" | 44 #include "public/platform/WebCompositorAnimationDelegate.h" |
| 44 #include "public/platform/WebCompositorAnimationPlayerClient.h" | |
| 45 #include "wtf/RefPtr.h" | 45 #include "wtf/RefPtr.h" |
| 46 | 46 |
| 47 namespace blink { | 47 namespace blink { |
| 48 | 48 |
| 49 class AnimationTimeline; | 49 class AnimationTimeline; |
| 50 class Element; | 50 class Element; |
| 51 class ExceptionState; | 51 class ExceptionState; |
| 52 class WebCompositorAnimationPlayer; | 52 class WebCompositorAnimationPlayer; |
| 53 | 53 |
| 54 class CORE_EXPORT Animation final | 54 class CORE_EXPORT Animation final |
| (...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 300 | 300 |
| 301 OwnPtr<WebCompositorAnimationPlayer> m_compositorPlayer; | 301 OwnPtr<WebCompositorAnimationPlayer> m_compositorPlayer; |
| 302 | 302 |
| 303 bool m_currentTimePending; | 303 bool m_currentTimePending; |
| 304 bool m_stateIsBeingUpdated; | 304 bool m_stateIsBeingUpdated; |
| 305 }; | 305 }; |
| 306 | 306 |
| 307 } // namespace blink | 307 } // namespace blink |
| 308 | 308 |
| 309 #endif // Animation_h | 309 #endif // Animation_h |
| OLD | NEW |