| 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 e6a194c1150243b641f444baa58259607daa2da6..23deafcb63f06d26a09932db1378807f95de23df 100644
|
| --- a/third_party/WebKit/Source/core/style/ComputedStyle.cpp
|
| +++ b/third_party/WebKit/Source/core/style/ComputedStyle.cpp
|
| @@ -470,7 +470,7 @@ ComputedStyle* ComputedStyle::addCachedPseudoStyle(
|
| if (!m_cachedPseudoStyles)
|
| m_cachedPseudoStyles = WTF::wrapUnique(new PseudoStyleCache);
|
|
|
| - m_cachedPseudoStyles->append(pseudo);
|
| + m_cachedPseudoStyles->push_back(pseudo);
|
|
|
| return result;
|
| }
|
| @@ -1136,7 +1136,7 @@ void ComputedStyle::addPaintImage(StyleImage* image) {
|
| m_rareNonInheritedData.access()->m_paintImages =
|
| WTF::makeUnique<Vector<Persistent<StyleImage>>>();
|
| }
|
| - m_rareNonInheritedData.access()->m_paintImages->append(image);
|
| + m_rareNonInheritedData.access()->m_paintImages->push_back(image);
|
| }
|
|
|
| void ComputedStyle::addCursor(StyleImage* image,
|
| @@ -1144,7 +1144,7 @@ void ComputedStyle::addCursor(StyleImage* image,
|
| const IntPoint& hotSpot) {
|
| if (!m_rareInheritedData.access()->cursorData)
|
| m_rareInheritedData.access()->cursorData = new CursorList;
|
| - m_rareInheritedData.access()->cursorData->append(
|
| + m_rareInheritedData.access()->cursorData->push_back(
|
| CursorData(image, hotSpotSpecified, hotSpot));
|
| }
|
|
|
| @@ -1226,7 +1226,7 @@ void ComputedStyle::updateIsStackingContext(bool isDocumentElement,
|
|
|
| void ComputedStyle::addCallbackSelector(const String& selector) {
|
| if (!m_rareNonInheritedData->m_callbackSelectors.contains(selector))
|
| - m_rareNonInheritedData.access()->m_callbackSelectors.append(selector);
|
| + m_rareNonInheritedData.access()->m_callbackSelectors.push_back(selector);
|
| }
|
|
|
| void ComputedStyle::setContent(ContentData* contentData) {
|
|
|