| 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 9b19ea93e9fb4c6a6f94b05c772b1bfc61dabd0e..0c76fda33611c5660b1d29a244b879e2c2cc1179 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();
|
| + std::unique_ptr<HashMap<AtomicString, RefPtr<CSSVariableData>>> variables = computedStyleInfo->getVariables();
|
|
|
| if (variables && !variables->isEmpty()) {
|
| for (const auto& it : *variables) {
|
|
|