Index: third_party/WebKit/Source/core/paint/ScopeRecorder.cpp |
diff --git a/third_party/WebKit/Source/core/paint/ScopeRecorder.cpp b/third_party/WebKit/Source/core/paint/ScopeRecorder.cpp |
index 76236454ee2c284dfaf331220f2dd3d8a4ecfdc8..c70a1ef128864813a2d5eb63a36b90b24de532c2 100644 |
--- a/third_party/WebKit/Source/core/paint/ScopeRecorder.cpp |
+++ b/third_party/WebKit/Source/core/paint/ScopeRecorder.cpp |
@@ -7,20 +7,20 @@ |
#include "core/layout/LayoutObject.h" |
#include "platform/graphics/GraphicsContext.h" |
-#include "platform/graphics/paint/DisplayItemList.h" |
+#include "platform/graphics/paint/PaintController.h" |
namespace blink { |
ScopeRecorder::ScopeRecorder(GraphicsContext& context) |
- : m_displayItemList(context.displayItemList()) |
+ : m_paintController(context.paintController()) |
{ |
- ASSERT(m_displayItemList); |
- m_displayItemList->beginScope(); |
+ ASSERT(m_paintController); |
+ m_paintController->beginScope(); |
} |
ScopeRecorder::~ScopeRecorder() |
{ |
- m_displayItemList->endScope(); |
+ m_paintController->endScope(); |
} |
} // namespace blink |