| Index: third_party/WebKit/Source/platform/graphics/paint/DisplayItemCacheSkipper.h
|
| diff --git a/third_party/WebKit/Source/platform/graphics/paint/DisplayItemCacheSkipper.h b/third_party/WebKit/Source/platform/graphics/paint/DisplayItemCacheSkipper.h
|
| index 7cae9b904dc5399209effaed3d976356b56dcf15..33d7328604fbd36dbdf0255f6a739b4e0d548fa8 100644
|
| --- a/third_party/WebKit/Source/platform/graphics/paint/DisplayItemCacheSkipper.h
|
| +++ b/third_party/WebKit/Source/platform/graphics/paint/DisplayItemCacheSkipper.h
|
| @@ -6,7 +6,7 @@
|
| #define DisplayItemCacheSkipper_h
|
|
|
| #include "platform/graphics/GraphicsContext.h"
|
| -#include "platform/graphics/paint/DisplayItemList.h"
|
| +#include "platform/graphics/paint/PaintController.h"
|
|
|
| namespace blink {
|
|
|
| @@ -15,11 +15,11 @@ public:
|
| DisplayItemCacheSkipper(GraphicsContext& context)
|
| : m_context(context)
|
| {
|
| - context.displayItemList()->beginSkippingCache();
|
| + context.paintController()->beginSkippingCache();
|
| }
|
| ~DisplayItemCacheSkipper()
|
| {
|
| - m_context.displayItemList()->endSkippingCache();
|
| + m_context.paintController()->endSkippingCache();
|
| }
|
|
|
| private:
|
|
|