| Index: third_party/WebKit/Source/core/inspector/InspectorAnimationAgent.cpp
|
| diff --git a/third_party/WebKit/Source/core/inspector/InspectorAnimationAgent.cpp b/third_party/WebKit/Source/core/inspector/InspectorAnimationAgent.cpp
|
| index 4d83ce1975ca0d691dba13fd7873866cd4ed5ef0..04794a0f2f40c7304f9cec3da50095e4b9110a9e 100644
|
| --- a/third_party/WebKit/Source/core/inspector/InspectorAnimationAgent.cpp
|
| +++ b/third_party/WebKit/Source/core/inspector/InspectorAnimationAgent.cpp
|
| @@ -437,12 +437,12 @@ String InspectorAnimationAgent::createCSSId(Animation& animation)
|
| }
|
|
|
| Element* element = effect->target();
|
| - WillBeHeapVector<RefPtrWillBeMember<CSSStyleDeclaration>> styles = m_cssAgent->matchingStyles(element);
|
| + HeapVector<Member<CSSStyleDeclaration>> styles = m_cssAgent->matchingStyles(element);
|
| OwnPtr<WebCryptoDigestor> digestor = createDigestor(HashAlgorithmSha1);
|
| addStringToDigestor(digestor.get(), String::number(type));
|
| addStringToDigestor(digestor.get(), effect->name());
|
| for (CSSPropertyID property : cssProperties) {
|
| - RefPtrWillBeRawPtr<CSSStyleDeclaration> style = m_cssAgent->findEffectiveDeclaration(property, styles);
|
| + RawPtr<CSSStyleDeclaration> style = m_cssAgent->findEffectiveDeclaration(property, styles);
|
| // Ignore inline styles.
|
| if (!style || !style->parentStyleSheet() || !style->parentRule() || style->parentRule()->type() != CSSRule::STYLE_RULE)
|
| continue;
|
|
|