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

Unified Diff: third_party/WebKit/Source/core/paint/ScrollRecorder.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/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
« no previous file with comments | « third_party/WebKit/Source/core/paint/ScopeRecorder.cpp ('k') | third_party/WebKit/Source/core/paint/ScrollableAreaPainter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698