Index: Source/core/inspector/InspectorCSSAgent.cpp |
diff --git a/Source/core/inspector/InspectorCSSAgent.cpp b/Source/core/inspector/InspectorCSSAgent.cpp |
index 69aa4364f9ac238456ecb0d9888b54f6db2bf304..5064f034859ec75c9452b65ce9e340f51a80feee 100644 |
--- a/Source/core/inspector/InspectorCSSAgent.cpp |
+++ b/Source/core/inspector/InspectorCSSAgent.cpp |
@@ -745,7 +745,7 @@ void InspectorCSSAgent::getComputedStyleForNode(ErrorString* errorString, int no |
if (!node) |
return; |
- RefPtr<CSSComputedStyleDeclaration> computedStyleInfo = CSSComputedStyleDeclaration::create(node, true); |
+ RefPtrWillBeRawPtr<CSSComputedStyleDeclaration> computedStyleInfo = CSSComputedStyleDeclaration::create(node, true); |
RefPtr<InspectorStyle> inspectorStyle = InspectorStyle::create(InspectorCSSId(), computedStyleInfo, 0); |
style = inspectorStyle->buildArrayForComputedStyle(); |
} |
@@ -775,7 +775,7 @@ void InspectorCSSAgent::getPlatformFontsForNode(ErrorString* errorString, int no |
if (!node) |
return; |
- RefPtr<CSSComputedStyleDeclaration> computedStyleInfo = CSSComputedStyleDeclaration::create(node, true); |
+ RefPtrWillBeRawPtr<CSSComputedStyleDeclaration> computedStyleInfo = CSSComputedStyleDeclaration::create(node, true); |
*cssFamilyName = computedStyleInfo->getPropertyValue(CSSPropertyFontFamily); |
Vector<Node*> textNodes; |