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

Unified Diff: third_party/WebKit/Source/core/layout/line/InlineIterator.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/InlineIterator.h
diff --git a/third_party/WebKit/Source/core/layout/line/InlineIterator.h b/third_party/WebKit/Source/core/layout/line/InlineIterator.h
index 4c17835d21acdf249a7d76a8923952e2fc263433..c38639827133f531a0287feb8fc8f2b14fdf357b 100644
--- a/third_party/WebKit/Source/core/layout/line/InlineIterator.h
+++ b/third_party/WebKit/Source/core/layout/line/InlineIterator.h
@@ -661,8 +661,8 @@ static inline BidiRun* addPlaceholderRunForIsolatedInline(
// FIXME: isolatedRuns() could be a hash of object->run and then we could
// cheaply ASSERT here that we didn't create multiple objects for the same
// inline.
- resolver.isolatedRuns().append(BidiIsolatedRun(obj, pos, root, *isolatedRun,
- resolver.context()->level()));
+ resolver.isolatedRuns().push_back(BidiIsolatedRun(
+ obj, pos, root, *isolatedRun, resolver.context()->level()));
return isolatedRun;
}

Powered by Google App Engine
This is Rietveld 408576698