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

Unified Diff: third_party/WebKit/Source/core/layout/line/BreakingContextInlineHeaders.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/BreakingContextInlineHeaders.h
diff --git a/third_party/WebKit/Source/core/layout/line/BreakingContextInlineHeaders.h b/third_party/WebKit/Source/core/layout/line/BreakingContextInlineHeaders.h
index 27c44facdd0fff74e8ea87ec723f6cb0d665cd94..21638f79e860bc178d19f999cc7c932379f36636 100644
--- a/third_party/WebKit/Source/core/layout/line/BreakingContextInlineHeaders.h
+++ b/third_party/WebKit/Source/core/layout/line/BreakingContextInlineHeaders.h
@@ -479,7 +479,7 @@ inline void BreakingContext::handleOutOfFlowPositioned(
m_trailingObjects.appendObjectIfNeeded(box);
}
if (!containerIsInline)
- positionedObjects.append(box);
+ positionedObjects.push_back(box);
m_width.addUncommittedWidth(
inlineLogicalWidthFromAncestorsIfNeeded(box).toFloat());
// Reset prior line break context characters.

Powered by Google App Engine
This is Rietveld 408576698