| Index: third_party/WebKit/Source/core/paint/ScrollRecorder.cpp
|
| diff --git a/third_party/WebKit/Source/core/paint/ScrollRecorder.cpp b/third_party/WebKit/Source/core/paint/ScrollRecorder.cpp
|
| index c1d32b38529055334115da2222108240798e6e58..4f2af9fc0c8d0ecb19d27391c91697de09eb00a0 100644
|
| --- a/third_party/WebKit/Source/core/paint/ScrollRecorder.cpp
|
| +++ b/third_party/WebKit/Source/core/paint/ScrollRecorder.cpp
|
| @@ -15,7 +15,7 @@ ScrollRecorder::ScrollRecorder(GraphicsContext& context, const DisplayItemClient
|
| , m_beginItemType(type)
|
| , m_context(context)
|
| {
|
| - m_context.paintController().createAndAppend<BeginScrollDisplayItem>(m_client, m_beginItemType, currentOffset);
|
| + m_context.getPaintController().createAndAppend<BeginScrollDisplayItem>(m_client, m_beginItemType, currentOffset);
|
| }
|
|
|
| ScrollRecorder::ScrollRecorder(GraphicsContext& context, const DisplayItemClient& client, PaintPhase phase, const IntSize& currentOffset)
|
| @@ -25,7 +25,7 @@ ScrollRecorder::ScrollRecorder(GraphicsContext& context, const DisplayItemClient
|
|
|
| ScrollRecorder::~ScrollRecorder()
|
| {
|
| - m_context.paintController().endItem<EndScrollDisplayItem>(m_client, DisplayItem::scrollTypeToEndScrollType(m_beginItemType));
|
| + m_context.getPaintController().endItem<EndScrollDisplayItem>(m_client, DisplayItem::scrollTypeToEndScrollType(m_beginItemType));
|
| }
|
|
|
| } // namespace blink
|
|
|