| Index: third_party/WebKit/Source/platform/graphics/paint/DisplayItemList.h
|
| diff --git a/third_party/WebKit/Source/platform/graphics/paint/DisplayItemList.h b/third_party/WebKit/Source/platform/graphics/paint/DisplayItemList.h
|
| index 24ea40b23b221e5dce088fd9b25d03cb2bd3b2d8..e3f726f812515c982c086ba5b16f418d546be377 100644
|
| --- a/third_party/WebKit/Source/platform/graphics/paint/DisplayItemList.h
|
| +++ b/third_party/WebKit/Source/platform/graphics/paint/DisplayItemList.h
|
| @@ -13,6 +13,7 @@
|
|
|
| namespace blink {
|
|
|
| +class JSONArray;
|
| struct PaintChunk;
|
|
|
| // kDisplayItemAlignment must be a multiple of alignof(derived display item) for
|
| @@ -68,6 +69,11 @@ class PLATFORM_EXPORT DisplayItemList
|
| Range<iterator> itemsInPaintChunk(const PaintChunk&);
|
| Range<const_iterator> itemsInPaintChunk(const PaintChunk&) const;
|
|
|
| + std::unique_ptr<JSONArray> subsequenceAsJSON(size_t beginIndex,
|
| + size_t endIndex,
|
| + bool showPictures,
|
| + bool skipNonDrawings) const;
|
| +
|
| private:
|
| Vector<IntRect> m_visualRects;
|
| };
|
|
|