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

Unified Diff: third_party/WebKit/Source/core/layout/line/TrailingObjects.h

Issue 2610253004: Migrate WTF::Vector::append() to ::push_back() [part 9 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/layout/line/TrailingObjects.h
diff --git a/third_party/WebKit/Source/core/layout/line/TrailingObjects.h b/third_party/WebKit/Source/core/layout/line/TrailingObjects.h
index 5167b9162591caa873d43f7a155eca39b3ca8c6a..255644025421e18ce9f9f9e119405db836c2fefb 100644
--- a/third_party/WebKit/Source/core/layout/line/TrailingObjects.h
+++ b/third_party/WebKit/Source/core/layout/line/TrailingObjects.h
@@ -82,7 +82,7 @@ class TrailingObjects {
void appendObjectIfNeeded(LineLayoutItem object) {
if (m_whitespace)
- m_objects.append(object);
+ m_objects.push_back(object);
}
enum CollapseFirstSpaceOrNot { DoNotCollapseFirstSpace, CollapseFirstSpace };

Powered by Google App Engine
This is Rietveld 408576698