Index: Source/core/paint/ViewDisplayList.h |
diff --git a/Source/core/paint/ViewDisplayList.h b/Source/core/paint/ViewDisplayList.h |
index b9af2963459a8ee91d038f58814d04f5fc87f0d7..8972153cadb4353494a1c841e98ec41ac2367e5e 100644 |
--- a/Source/core/paint/ViewDisplayList.h |
+++ b/Source/core/paint/ViewDisplayList.h |
@@ -96,11 +96,12 @@ public: |
#endif |
private: |
- bool isRepaint(PaintList::iterator, const DisplayItem&); |
- // Update m_paintList with any invalidations or new paints. |
+ PaintList::iterator findDisplayItem(PaintList::iterator, const DisplayItem&); |
+ bool wasInvalidated(const DisplayItem&) const; |
void updatePaintList(); |
PaintList m_paintList; |
+ HashSet<const RenderObject*> m_paintListRenderers; |
HashSet<const RenderObject*> m_invalidated; |
PaintList m_newPaints; |
}; |