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

Unified Diff: third_party/WebKit/Source/core/xml/XSLStyleSheetLibxslt.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/xml/XSLStyleSheetLibxslt.cpp
diff --git a/third_party/WebKit/Source/core/xml/XSLStyleSheetLibxslt.cpp b/third_party/WebKit/Source/core/xml/XSLStyleSheetLibxslt.cpp
index f5f240e50cfc205bb85f567fbd87039f1dab6465..e9c2d4888538f05ff361cbbdaf9e1b41f9006c04 100644
--- a/third_party/WebKit/Source/core/xml/XSLStyleSheetLibxslt.cpp
+++ b/third_party/WebKit/Source/core/xml/XSLStyleSheetLibxslt.cpp
@@ -223,7 +223,7 @@ void XSLStyleSheet::loadChildSheets() {
void XSLStyleSheet::loadChildSheet(const String& href) {
XSLImportRule* childRule = XSLImportRule::create(this, href);
- m_children.append(childRule);
+ m_children.push_back(childRule);
childRule->loadSheet();
}
« no previous file with comments | « third_party/WebKit/Source/core/xml/XPathStep.cpp ('k') | third_party/WebKit/Source/core/xml/parser/XMLErrors.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698