| Index: third_party/WebKit/Source/core/style/StyleNonInheritedVariables.h
|
| diff --git a/third_party/WebKit/Source/core/style/StyleNonInheritedVariables.h b/third_party/WebKit/Source/core/style/StyleNonInheritedVariables.h
|
| index 81526d7aa89352a8215027d269610d15764cbee6..c7cec75af7e5382211111e966c24b0fc19105126 100644
|
| --- a/third_party/WebKit/Source/core/style/StyleNonInheritedVariables.h
|
| +++ b/third_party/WebKit/Source/core/style/StyleNonInheritedVariables.h
|
| @@ -16,11 +16,11 @@ namespace blink {
|
| class StyleNonInheritedVariables {
|
| public:
|
| static std::unique_ptr<StyleNonInheritedVariables> create() {
|
| - return wrapUnique(new StyleNonInheritedVariables);
|
| + return WTF::wrapUnique(new StyleNonInheritedVariables);
|
| }
|
|
|
| std::unique_ptr<StyleNonInheritedVariables> copy() {
|
| - return wrapUnique(new StyleNonInheritedVariables(*this));
|
| + return WTF::wrapUnique(new StyleNonInheritedVariables(*this));
|
| }
|
|
|
| bool operator==(const StyleNonInheritedVariables& other) const;
|
|
|