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

Unified Diff: third_party/WebKit/Source/core/css/resolver/MatchResult.cpp

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/resolver/MatchResult.cpp
diff --git a/third_party/WebKit/Source/core/css/resolver/MatchResult.cpp b/third_party/WebKit/Source/core/css/resolver/MatchResult.cpp
index 912a8240fb0b5e58bd292050727b76dfb68719ac..fef744e7063a9ce7ac88dfa7d68a013770ff2cfd 100644
--- a/third_party/WebKit/Source/core/css/resolver/MatchResult.cpp
+++ b/third_party/WebKit/Source/core/css/resolver/MatchResult.cpp
@@ -65,7 +65,7 @@ void MatchResult::finishAddingAuthorRulesForTreeScope() {
if (!m_authorRangeEnds.isEmpty() &&
m_authorRangeEnds.back() == m_matchedProperties.size())
return;
- m_authorRangeEnds.append(m_matchedProperties.size());
+ m_authorRangeEnds.push_back(m_matchedProperties.size());
}
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698