| Index: third_party/WebKit/Source/core/style/ComputedStyle.cpp
|
| diff --git a/third_party/WebKit/Source/core/style/ComputedStyle.cpp b/third_party/WebKit/Source/core/style/ComputedStyle.cpp
|
| index 10aa6df78fc240a6ffca850be4fb234be7119956..7570afa0514c07d67fa179373ab370989999c05c 100644
|
| --- a/third_party/WebKit/Source/core/style/ComputedStyle.cpp
|
| +++ b/third_party/WebKit/Source/core/style/ComputedStyle.cpp
|
| @@ -1138,9 +1138,10 @@ void ComputedStyle::updatePropertySpecificDifferences(
|
| }
|
|
|
| void ComputedStyle::addPaintImage(StyleImage* image) {
|
| - if (!m_rareNonInheritedData.access()->m_paintImages)
|
| + if (!m_rareNonInheritedData.access()->m_paintImages) {
|
| m_rareNonInheritedData.access()->m_paintImages =
|
| - WTF::wrapUnique(new Vector<Persistent<StyleImage>>());
|
| + makeUnique<Vector<Persistent<StyleImage>>>();
|
| + }
|
| m_rareNonInheritedData.access()->m_paintImages->append(image);
|
| }
|
|
|
|
|