Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(140)

Unified Diff: third_party/WebKit/Source/core/css/CSSGradientValue.h

Issue 2566403003: Migrate WTF::Vector::append() to ::push_back() [part 3 of N] (Closed)
Patch Set: Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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(); }

Powered by Google App Engine
This is Rietveld 408576698