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

Unified Diff: third_party/WebKit/Source/core/layout/ng/ng_line_builder.cc

Issue 2653203003: Migrate WTF::Vector::append() to ::push_back() [part 17 of N] (Closed)
Patch Set: 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/ng/ng_line_builder.cc
diff --git a/third_party/WebKit/Source/core/layout/ng/ng_line_builder.cc b/third_party/WebKit/Source/core/layout/ng/ng_line_builder.cc
index be0f9ab1b2e471751733b69fd5c59452b5b97068..95191f742924578bcfa32c7ddfae419c75a5795f 100644
--- a/third_party/WebKit/Source/core/layout/ng/ng_line_builder.cc
+++ b/third_party/WebKit/Source/core/layout/ng/ng_line_builder.cc
@@ -179,7 +179,7 @@ void NGLineBuilder::CopyFragmentDataToLayoutBlockFlow() {
LineLayoutItem(layout_object));
}
bidi_runs.addRun(run);
- fragments_for_bidi_runs.append(fragment);
+ fragments_for_bidi_runs.push_back(fragment);
}
}
// TODO(kojii): bidi needs to find the logical last run.

Powered by Google App Engine
This is Rietveld 408576698