Index: third_party/WebKit/Source/core/paint/Transform3DRecorder.cpp |
diff --git a/third_party/WebKit/Source/core/paint/Transform3DRecorder.cpp b/third_party/WebKit/Source/core/paint/Transform3DRecorder.cpp |
index c188e13aeedb6e2a913b38ae25625f3e765f5cbc..3501d36bb56da945dcfc24e1eafdae9c6316aa51 100644 |
--- a/third_party/WebKit/Source/core/paint/Transform3DRecorder.cpp |
+++ b/third_party/WebKit/Source/core/paint/Transform3DRecorder.cpp |
@@ -26,7 +26,7 @@ Transform3DRecorder::Transform3DRecorder( |
if (m_skipRecordingForIdentityTransform) |
return; |
- m_context.paintController().createAndAppend<BeginTransform3DDisplayItem>(m_client, m_type, transform, transformOrigin); |
+ m_context.getPaintController().createAndAppend<BeginTransform3DDisplayItem>(m_client, m_type, transform, transformOrigin); |
} |
Transform3DRecorder::~Transform3DRecorder() |
@@ -34,7 +34,7 @@ Transform3DRecorder::~Transform3DRecorder() |
if (m_skipRecordingForIdentityTransform) |
return; |
- m_context.paintController().endItem<EndTransform3DDisplayItem>(m_client, DisplayItem::transform3DTypeToEndTransform3DType(m_type)); |
+ m_context.getPaintController().endItem<EndTransform3DDisplayItem>(m_client, DisplayItem::transform3DTypeToEndTransform3DType(m_type)); |
} |
} // namespace blink |