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

Unified Diff: third_party/WebKit/Source/core/dom/DocumentStyleSheetCollector.cpp

Issue 2574773002: Migrate WTF::Vector::append() to ::push_back() [part 4 of N] (Closed)
Patch Set: rebase 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/dom/DocumentStyleSheetCollector.cpp
diff --git a/third_party/WebKit/Source/core/dom/DocumentStyleSheetCollector.cpp b/third_party/WebKit/Source/core/dom/DocumentStyleSheetCollector.cpp
index 2a947f9b549baf6025eca003324a1f16f65e2beb..7a0325253faff78225c9027ea568dcbdd1674167 100644
--- a/third_party/WebKit/Source/core/dom/DocumentStyleSheetCollector.cpp
+++ b/third_party/WebKit/Source/core/dom/DocumentStyleSheetCollector.cpp
@@ -57,7 +57,7 @@ void DocumentStyleSheetCollector::appendActiveStyleSheet(CSSStyleSheet* sheet) {
void DocumentStyleSheetCollector::appendSheetForList(StyleSheet* sheet) {
if (m_styleSheetsForStyleSheetList) {
- m_styleSheetsForStyleSheetList->append(sheet);
+ m_styleSheetsForStyleSheetList->push_back(sheet);
} else {
m_collection->appendSheetForList(sheet);
}

Powered by Google App Engine
This is Rietveld 408576698