Index: Source/platform/graphics/paint/DisplayItemList.h |
diff --git a/Source/platform/graphics/paint/DisplayItemList.h b/Source/platform/graphics/paint/DisplayItemList.h |
index ea3ad1b11ace8ecf07f55088e74860d0a826f3c0..164f94160f061d035a3d185fd06fd0032c7055b0 100644 |
--- a/Source/platform/graphics/paint/DisplayItemList.h |
+++ b/Source/platform/graphics/paint/DisplayItemList.h |
@@ -135,7 +135,7 @@ private: |
WTF::String displayItemsAsDebugString(const DisplayItems&) const; |
#endif |
- // Indices into PaintList of all DrawingDisplayItems and BeginSubtreeDisplayItems of each client. |
+ // Indices into PaintList of all DrawingDisplayItems and BeginSubsequenceDisplayItems of each client. |
// Temporarily used during merge to find out-of-order display items. |
using DisplayItemIndicesByClientMap = HashMap<DisplayItemClient, Vector<size_t>>; |
@@ -144,8 +144,8 @@ private: |
struct OutOfOrderIndexContext; |
DisplayItems::iterator findOutOfOrderCachedItem(DisplayItems::iterator currentIt, const DisplayItem::Id&, OutOfOrderIndexContext&); |
- DisplayItems::iterator findOutOfOrderCachedItemForward(const DisplayItem::Id&, OutOfOrderIndexContext&); |
- void copyCachedSubtree(DisplayItems::iterator& currentIt, DisplayItems& updatedList); |
+ DisplayItems::iterator findOutOfOrderCachedItemForward(DisplayItems::iterator currentIt, const DisplayItem::Id&, OutOfOrderIndexContext&); |
+ void copyCachedSubsequence(DisplayItems::iterator& currentIt, DisplayItems& updatedList); |
#if ENABLE(ASSERT) |
// The following two methods are for checking under-invalidations |