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

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

Issue 2788683005: Migrate WTF::RefVector::append() to ::push_back() (Closed)
Patch Set: Created 3 years, 9 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/ComputedStyle.cpp
diff --git a/third_party/WebKit/Source/core/style/ComputedStyle.cpp b/third_party/WebKit/Source/core/style/ComputedStyle.cpp
index 12a1ffac605679b1800ce9203b106515813337db..68b4fd84ef70a5057e5ac6996f648294b2b5da6b 100644
--- a/third_party/WebKit/Source/core/style/ComputedStyle.cpp
+++ b/third_party/WebKit/Source/core/style/ComputedStyle.cpp
@@ -1977,7 +1977,7 @@ void ComputedStyle::addAppliedTextDecoration(
else if (!list->hasOneRef())
list = list->copy();
- list->append(decoration);
+ list->push_back(decoration);
}
void ComputedStyle::overrideTextDecorationColors(Color overrideColor) {

Powered by Google App Engine
This is Rietveld 408576698