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

Unified Diff: third_party/WebKit/Source/platform/graphics/ContentLayerDelegate.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/platform/graphics/ContentLayerDelegate.cpp
diff --git a/third_party/WebKit/Source/platform/graphics/ContentLayerDelegate.cpp b/third_party/WebKit/Source/platform/graphics/ContentLayerDelegate.cpp
index 040e0280c4e7a40482b51a19de32c188be644d5a..da8a4ae19bcff1c00e71db6409ae4c80bb12a62b 100644
--- a/third_party/WebKit/Source/platform/graphics/ContentLayerDelegate.cpp
+++ b/third_party/WebKit/Source/platform/graphics/ContentLayerDelegate.cpp
@@ -75,7 +75,7 @@ void ContentLayerDelegate::paintContents(
{
TRACE_EVENT0("blink,benchmark", "ContentLayerDelegate::paintContents");
- PaintController& paintController = m_graphicsLayer->paintController();
+ PaintController& paintController = m_graphicsLayer->getPaintController();
paintController.setDisplayItemConstructionIsDisabled(
paintingControl == WebContentLayerClient::DisplayListConstructionDisabled);
paintController.setSubsequenceCachingIsDisabled(
@@ -107,7 +107,7 @@ void ContentLayerDelegate::paintContents(
size_t ContentLayerDelegate::approximateUnsharedMemoryUsage() const
{
- return m_graphicsLayer->paintController().approximateUnsharedMemoryUsage();
+ return m_graphicsLayer->getPaintController().approximateUnsharedMemoryUsage();
}
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698