| 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 24 matching lines...) Expand all Loading... |
| 35 #include "core/animation/KeyframeEffect.h" | 35 #include "core/animation/KeyframeEffect.h" |
| 36 #include "core/animation/css/CSSAnimations.h" | 36 #include "core/animation/css/CSSAnimations.h" |
| 37 #include "core/dom/Document.h" | 37 #include "core/dom/Document.h" |
| 38 #include "core/dom/ExceptionCode.h" | 38 #include "core/dom/ExceptionCode.h" |
| 39 #include "core/dom/StyleChangeReason.h" | 39 #include "core/dom/StyleChangeReason.h" |
| 40 #include "core/events/AnimationPlaybackEvent.h" | 40 #include "core/events/AnimationPlaybackEvent.h" |
| 41 #include "core/frame/UseCounter.h" | 41 #include "core/frame/UseCounter.h" |
| 42 #include "core/inspector/InspectorInstrumentation.h" | 42 #include "core/inspector/InspectorInstrumentation.h" |
| 43 #include "core/inspector/InspectorTraceEvents.h" | 43 #include "core/inspector/InspectorTraceEvents.h" |
| 44 #include "platform/RuntimeEnabledFeatures.h" | 44 #include "platform/RuntimeEnabledFeatures.h" |
| 45 #include "platform/TraceEvent.h" | |
| 46 #include "platform/animation/CompositorAnimationPlayer.h" | 45 #include "platform/animation/CompositorAnimationPlayer.h" |
| 46 #include "platform/tracing/TraceEvent.h" |
| 47 #include "public/platform/Platform.h" | 47 #include "public/platform/Platform.h" |
| 48 #include "public/platform/WebCompositorSupport.h" | 48 #include "public/platform/WebCompositorSupport.h" |
| 49 #include "wtf/MathExtras.h" | 49 #include "wtf/MathExtras.h" |
| 50 #include "wtf/PtrUtil.h" | 50 #include "wtf/PtrUtil.h" |
| 51 | 51 |
| 52 namespace blink { | 52 namespace blink { |
| 53 | 53 |
| 54 namespace { | 54 namespace { |
| 55 | 55 |
| 56 static unsigned nextSequenceNumber() { | 56 static unsigned nextSequenceNumber() { |
| (...skipping 1054 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1111 visitor->trace(m_timeline); | 1111 visitor->trace(m_timeline); |
| 1112 visitor->trace(m_pendingFinishedEvent); | 1112 visitor->trace(m_pendingFinishedEvent); |
| 1113 visitor->trace(m_pendingCancelledEvent); | 1113 visitor->trace(m_pendingCancelledEvent); |
| 1114 visitor->trace(m_finishedPromise); | 1114 visitor->trace(m_finishedPromise); |
| 1115 visitor->trace(m_readyPromise); | 1115 visitor->trace(m_readyPromise); |
| 1116 EventTargetWithInlineData::trace(visitor); | 1116 EventTargetWithInlineData::trace(visitor); |
| 1117 ActiveDOMObject::trace(visitor); | 1117 ActiveDOMObject::trace(visitor); |
| 1118 } | 1118 } |
| 1119 | 1119 |
| 1120 } // namespace blink | 1120 } // namespace blink |
| OLD | NEW |