| Index: third_party/WebKit/Source/core/inspector/InspectorTraceEvents.cpp
|
| diff --git a/third_party/WebKit/Source/core/inspector/InspectorTraceEvents.cpp b/third_party/WebKit/Source/core/inspector/InspectorTraceEvents.cpp
|
| index de3585f230c4777ae52d9e68f42f7a90c8dd4620..98912d5f8c091514eb0f227054be11fe680f95d2 100644
|
| --- a/third_party/WebKit/Source/core/inspector/InspectorTraceEvents.cpp
|
| +++ b/third_party/WebKit/Source/core/inspector/InspectorTraceEvents.cpp
|
| @@ -839,7 +839,7 @@ std::unique_ptr<TracedValue> InspectorAnimationEvent::data(const Animation& anim
|
| std::unique_ptr<TracedValue> value = TracedValue::create();
|
| value->setString("id", String::number(animation.sequenceNumber()));
|
| value->setString("state", animation.playState());
|
| - if (const AnimationEffect* effect = animation.effect()) {
|
| + if (const AnimationEffectReadOnly* effect = animation.effect()) {
|
| value->setString("name", animation.id());
|
| if (effect->isKeyframeEffect()) {
|
| if (Element* target = toKeyframeEffect(effect)->target())
|
|
|