| Index: third_party/WebKit/Source/core/css/CSSGradientValue.h
|
| diff --git a/third_party/WebKit/Source/core/css/CSSGradientValue.h b/third_party/WebKit/Source/core/css/CSSGradientValue.h
|
| index 76ba3935f6b5159154d34645a6f106cf37f7f0ac..8aa855381e5d2007d9f1e8aad0f33ef9872f097c 100644
|
| --- a/third_party/WebKit/Source/core/css/CSSGradientValue.h
|
| +++ b/third_party/WebKit/Source/core/css/CSSGradientValue.h
|
| @@ -92,7 +92,7 @@ class CSSGradientValue : public CSSImageGeneratorValue {
|
| void setSecondX(CSSValue* val) { m_secondX = val; }
|
| void setSecondY(CSSValue* val) { m_secondY = val; }
|
|
|
| - void addStop(const CSSGradientColorStop& stop) { m_stops.append(stop); }
|
| + void addStop(const CSSGradientColorStop& stop) { m_stops.push_back(stop); }
|
|
|
| unsigned stopCount() const { return m_stops.size(); }
|
|
|
|
|