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

Unified Diff: third_party/WebKit/Source/core/dom/CSSSelectorWatch.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/CSSSelectorWatch.cpp
diff --git a/third_party/WebKit/Source/core/dom/CSSSelectorWatch.cpp b/third_party/WebKit/Source/core/dom/CSSSelectorWatch.cpp
index a45caa6a16baf06e613b0500b10be8466ff46a93..c81f41dd211a059788c36b51e170c16e27565b22 100644
--- a/third_party/WebKit/Source/core/dom/CSSSelectorWatch.cpp
+++ b/third_party/WebKit/Source/core/dom/CSSSelectorWatch.cpp
@@ -159,7 +159,7 @@ void CSSSelectorWatch::watchCSSSelectors(const Vector<String>& selectors) {
if (!allCompound(selectorList))
continue;
- m_watchedCallbackSelectors.append(
+ m_watchedCallbackSelectors.push_back(
StyleRule::create(std::move(selectorList), callbackPropertySet));
}
document().styleEngine().watchedSelectorsChanged();
« no previous file with comments | « third_party/WebKit/Source/core/dom/AttributeCollection.h ('k') | third_party/WebKit/Source/core/dom/CSSSelectorWatchTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698