| Index: third_party/WebKit/Source/core/css/CSSComputedStyleDeclaration.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/CSSComputedStyleDeclaration.cpp b/third_party/WebKit/Source/core/css/CSSComputedStyleDeclaration.cpp
|
| index 8dda6ecc25a71aa3b6a008ad0b9a5a08557ba4d0..c5c4b325e96315f69af58ad522f9e460d4fee4dc 100644
|
| --- a/third_party/WebKit/Source/core/css/CSSComputedStyleDeclaration.cpp
|
| +++ b/third_party/WebKit/Source/core/css/CSSComputedStyleDeclaration.cpp
|
| @@ -29,6 +29,7 @@
|
| #include "core/css/CSSPropertyMetadata.h"
|
| #include "core/css/CSSSelector.h"
|
| #include "core/css/CSSValuePool.h"
|
| +#include "core/css/CSSVariableData.h"
|
| #include "core/css/ComputedStyleCSSValueMapping.h"
|
| #include "core/css/parser/CSSParser.h"
|
| #include "core/css/parser/CSSVariableParser.h"
|
| @@ -534,7 +535,7 @@ CSSValue* CSSComputedStyleDeclaration::getPropertyCSSValue(AtomicString customPr
|
| return ComputedStyleCSSValueMapping::get(customPropertyName, *style);
|
| }
|
|
|
| -const HashMap<AtomicString, RefPtr<CSSVariableData>>* CSSComputedStyleDeclaration::getVariables() const
|
| +std::unique_ptr<HashMap<AtomicString, RefPtr<CSSVariableData>>> CSSComputedStyleDeclaration::getVariables() const
|
| {
|
| const ComputedStyle* style = computeComputedStyle();
|
| if (!style)
|
|
|