Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(117)

Unified Diff: third_party/WebKit/Source/core/paint/Transform3DRecorder.cpp

Issue 1774943003: blink: Rename platform/ methods to prefix with get when they collide. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: clash-platform: rebase-yayyyyyyyy Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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
« no previous file with comments | « third_party/WebKit/Source/core/paint/TextPainter.cpp ('k') | third_party/WebKit/Source/core/paint/TransformRecorder.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698