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

Unified Diff: third_party/WebKit/Source/core/paint/TransformRecorder.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/TransformRecorder.cpp
diff --git a/third_party/WebKit/Source/core/paint/TransformRecorder.cpp b/third_party/WebKit/Source/core/paint/TransformRecorder.cpp
index b1079f9a19bbe850d313f4eb090cf4329070de18..f649d13c76c3ddeba35617ad70a4aee67fc213aa 100644
--- a/third_party/WebKit/Source/core/paint/TransformRecorder.cpp
+++ b/third_party/WebKit/Source/core/paint/TransformRecorder.cpp
@@ -19,7 +19,7 @@ TransformRecorder::TransformRecorder(GraphicsContext& context, const DisplayItem
if (m_skipRecordingForIdentityTransform)
return;
- m_context.paintController().createAndAppend<BeginTransformDisplayItem>(m_client, transform);
+ m_context.getPaintController().createAndAppend<BeginTransformDisplayItem>(m_client, transform);
}
TransformRecorder::~TransformRecorder()
@@ -27,7 +27,7 @@ TransformRecorder::~TransformRecorder()
if (m_skipRecordingForIdentityTransform)
return;
- m_context.paintController().endItem<EndTransformDisplayItem>(m_client);
+ m_context.getPaintController().endItem<EndTransformDisplayItem>(m_client);
}
} // namespace blink
« no previous file with comments | « third_party/WebKit/Source/core/paint/Transform3DRecorder.cpp ('k') | third_party/WebKit/Source/core/style/ComputedStyle.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698