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

Unified Diff: third_party/WebKit/Source/core/style/QuotesData.cpp

Issue 2617783002: Migrate WTF::Vector::append() to ::push_back() [part 12 of N] (Closed)
Patch Set: rebase Created 3 years, 11 months 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/style/QuotesData.cpp
diff --git a/third_party/WebKit/Source/core/style/QuotesData.cpp b/third_party/WebKit/Source/core/style/QuotesData.cpp
index 470dbac98caf02af091bbe76709c00544b68e369..5b088c6db553fcacf9d29ef962ccd3863a9dd46a 100644
--- a/third_party/WebKit/Source/core/style/QuotesData.cpp
+++ b/third_party/WebKit/Source/core/style/QuotesData.cpp
@@ -34,7 +34,7 @@ PassRefPtr<QuotesData> QuotesData::create(UChar open1,
}
void QuotesData::addPair(std::pair<String, String> quotePair) {
- m_quotePairs.append(quotePair);
+ m_quotePairs.push_back(quotePair);
}
const String QuotesData::getOpenQuote(int index) const {
« no previous file with comments | « third_party/WebKit/Source/core/style/FilterOperationsTest.cpp ('k') | third_party/WebKit/Source/core/style/ShadowList.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698