| Index: third_party/WebKit/Source/core/inspector/InspectorCSSAgent.cpp
|
| diff --git a/third_party/WebKit/Source/core/inspector/InspectorCSSAgent.cpp b/third_party/WebKit/Source/core/inspector/InspectorCSSAgent.cpp
|
| index 879e1dd2dd46d85c190adfe1c4290dd56c754065..73e3e8b5ad2a05a0f45737b47446531dff50f6f7 100644
|
| --- a/third_party/WebKit/Source/core/inspector/InspectorCSSAgent.cpp
|
| +++ b/third_party/WebKit/Source/core/inspector/InspectorCSSAgent.cpp
|
| @@ -1032,7 +1032,7 @@ void InspectorCSSAgent::getComputedStyleForNode(ErrorString* errorString, int no
|
| if (!RuntimeEnabledFeatures::cssVariablesEnabled())
|
| return;
|
|
|
| - const HashMap<AtomicString, RefPtr<CSSVariableData>>* variables = computedStyleInfo->getVariables();
|
| + OwnPtr<HashMap<AtomicString, RefPtr<CSSVariableData>>> variables = computedStyleInfo->getVariables();
|
|
|
| if (variables && !variables->isEmpty()) {
|
| for (const auto& it : *variables) {
|
|
|