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

Unified Diff: third_party/WebKit/Source/core/paint/FloatClipRecorder.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/FloatClipRecorder.cpp
diff --git a/third_party/WebKit/Source/core/paint/FloatClipRecorder.cpp b/third_party/WebKit/Source/core/paint/FloatClipRecorder.cpp
index 13648cc2c313e3d2e429692762f186dd2f774743..01723f17e345ec88a98ac845ea0c4049092b65c3 100644
--- a/third_party/WebKit/Source/core/paint/FloatClipRecorder.cpp
+++ b/third_party/WebKit/Source/core/paint/FloatClipRecorder.cpp
@@ -15,13 +15,13 @@ FloatClipRecorder::FloatClipRecorder(GraphicsContext& context, const DisplayItem
, m_client(client)
, m_clipType(DisplayItem::paintPhaseToFloatClipType(paintPhase))
{
- m_context.paintController().createAndAppend<FloatClipDisplayItem>(m_client, m_clipType, clipRect);
+ m_context.getPaintController().createAndAppend<FloatClipDisplayItem>(m_client, m_clipType, clipRect);
}
FloatClipRecorder::~FloatClipRecorder()
{
DisplayItem::Type endType = DisplayItem::floatClipTypeToEndFloatClipType(m_clipType);
- m_context.paintController().endItem<EndFloatClipDisplayItem>(m_client, endType);
+ m_context.getPaintController().endItem<EndFloatClipDisplayItem>(m_client, endType);
}
} // namespace blink
« no previous file with comments | « third_party/WebKit/Source/core/paint/FilterPainter.cpp ('k') | third_party/WebKit/Source/core/paint/FramePainter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698