| 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 23 matching lines...) Expand all Loading... |
| 34 #include "core/animation/CompositorPendingAnimations.h" | 34 #include "core/animation/CompositorPendingAnimations.h" |
| 35 #include "core/animation/KeyframeEffect.h" | 35 #include "core/animation/KeyframeEffect.h" |
| 36 #include "core/dom/Document.h" | 36 #include "core/dom/Document.h" |
| 37 #include "core/dom/ExceptionCode.h" | 37 #include "core/dom/ExceptionCode.h" |
| 38 #include "core/dom/StyleChangeReason.h" | 38 #include "core/dom/StyleChangeReason.h" |
| 39 #include "core/events/AnimationPlayerEvent.h" | 39 #include "core/events/AnimationPlayerEvent.h" |
| 40 #include "core/frame/UseCounter.h" | 40 #include "core/frame/UseCounter.h" |
| 41 #include "core/inspector/InspectorInstrumentation.h" | 41 #include "core/inspector/InspectorInstrumentation.h" |
| 42 #include "core/inspector/InspectorTraceEvents.h" | 42 #include "core/inspector/InspectorTraceEvents.h" |
| 43 #include "platform/RuntimeEnabledFeatures.h" | 43 #include "platform/RuntimeEnabledFeatures.h" |
| 44 #include "platform/TraceEvent.h" | |
| 45 #include "platform/animation/CompositorAnimationPlayer.h" | 44 #include "platform/animation/CompositorAnimationPlayer.h" |
| 45 #include "platform/tracing/TraceEvent.h" |
| 46 #include "public/platform/Platform.h" | 46 #include "public/platform/Platform.h" |
| 47 #include "public/platform/WebCompositorSupport.h" | 47 #include "public/platform/WebCompositorSupport.h" |
| 48 #include "wtf/MathExtras.h" | 48 #include "wtf/MathExtras.h" |
| 49 #include "wtf/PtrUtil.h" | 49 #include "wtf/PtrUtil.h" |
| 50 | 50 |
| 51 namespace blink { | 51 namespace blink { |
| 52 | 52 |
| 53 namespace { | 53 namespace { |
| 54 | 54 |
| 55 static unsigned nextSequenceNumber() | 55 static unsigned nextSequenceNumber() |
| (...skipping 1044 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1100 visitor->trace(m_timeline); | 1100 visitor->trace(m_timeline); |
| 1101 visitor->trace(m_pendingFinishedEvent); | 1101 visitor->trace(m_pendingFinishedEvent); |
| 1102 visitor->trace(m_pendingCancelledEvent); | 1102 visitor->trace(m_pendingCancelledEvent); |
| 1103 visitor->trace(m_finishedPromise); | 1103 visitor->trace(m_finishedPromise); |
| 1104 visitor->trace(m_readyPromise); | 1104 visitor->trace(m_readyPromise); |
| 1105 EventTargetWithInlineData::trace(visitor); | 1105 EventTargetWithInlineData::trace(visitor); |
| 1106 ActiveDOMObject::trace(visitor); | 1106 ActiveDOMObject::trace(visitor); |
| 1107 } | 1107 } |
| 1108 | 1108 |
| 1109 } // namespace blink | 1109 } // namespace blink |
| OLD | NEW |