| Index: third_party/WebKit/Source/platform/graphics/paint/PaintController.h
|
| diff --git a/third_party/WebKit/Source/platform/graphics/paint/PaintController.h b/third_party/WebKit/Source/platform/graphics/paint/PaintController.h
|
| index cdcd29a18fd2a93796a45e8a3238721807ca2a61..4ff8560f367dbf4f83beb9a52aa614f4923ced5d 100644
|
| --- a/third_party/WebKit/Source/platform/graphics/paint/PaintController.h
|
| +++ b/third_party/WebKit/Source/platform/graphics/paint/PaintController.h
|
| @@ -24,6 +24,8 @@
|
| #include "wtf/Vector.h"
|
| #include <utility>
|
|
|
| +class SkPicture;
|
| +
|
| namespace blink {
|
|
|
| class GraphicsContext;
|
| @@ -139,6 +141,8 @@ public:
|
| // the last commitNewDisplayItems(). Use with care.
|
| DisplayItemList& newDisplayItemList() { return m_newDisplayItemList; }
|
|
|
| + void appendDebugDrawingAfterCommit(const DisplayItemClient&, PassRefPtr<SkPicture>, const LayoutSize& offsetFromLayoutObject);
|
| +
|
| #ifndef NDEBUG
|
| void showDebugData() const;
|
| #endif
|
| @@ -191,7 +195,6 @@ private:
|
| // (when RuntimeEnabledFeatures::slimmingPaintUnderInvalidationCheckingEnabled).
|
| void checkUnderInvalidation(DisplayItemList::iterator& newIt, DisplayItemList::iterator& currentIt);
|
| void checkCachedDisplayItemIsUnchanged(const char* messagePrefix, const DisplayItem& newItem, const DisplayItem& oldItem);
|
| - void checkNoRemainingCachedDisplayItems();
|
| #endif
|
|
|
| void updateCacheGeneration();
|
|
|