| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "config.h" | 5 #include "config.h" |
| 6 | 6 |
| 7 #include "core/inspector/InspectorAnimationAgent.h" | 7 #include "core/inspector/InspectorAnimationAgent.h" |
| 8 | 8 |
| 9 #include "core/animation/AnimationNode.h" | 9 #include "core/animation/AnimationNode.h" |
| 10 #include "core/animation/AnimationPlayer.h" | 10 #include "core/animation/AnimationPlayer.h" |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 127 .setFillMode(animationNode.specifiedTiming().fillMode) | 127 .setFillMode(animationNode.specifiedTiming().fillMode) |
| 128 .setTimeFraction(animationNode.timeFraction()) | 128 .setTimeFraction(animationNode.timeFraction()) |
| 129 .setName(animationNode.name()); | 129 .setName(animationNode.name()); |
| 130 return animationObject.release(); | 130 return animationObject.release(); |
| 131 } | 131 } |
| 132 | 132 |
| 133 void InspectorAnimationAgent::trace(Visitor* visitor) | 133 void InspectorAnimationAgent::trace(Visitor* visitor) |
| 134 { | 134 { |
| 135 #if ENABLE(OILPAN) | 135 #if ENABLE(OILPAN) |
| 136 visitor->trace(m_idToAnimationPlayer); | 136 visitor->trace(m_idToAnimationPlayer); |
| 137 visitor->trace(m_domAgent); |
| 137 #endif | 138 #endif |
| 138 InspectorBaseAgent::trace(visitor); | 139 InspectorBaseAgent::trace(visitor); |
| 139 } | 140 } |
| 140 | 141 |
| 141 } | 142 } |
| OLD | NEW |