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

Unified Diff: third_party/WebKit/Source/web/WebViewImplPaintArtifactCompositorTest.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/web/WebViewImplPaintArtifactCompositorTest.cpp
diff --git a/third_party/WebKit/Source/web/WebViewImplPaintArtifactCompositorTest.cpp b/third_party/WebKit/Source/web/WebViewImplPaintArtifactCompositorTest.cpp
index fe594f13c1f3797ea214224ff980c7c9dd651068..ec3446d92cab01fcb3fb38b419a8b9c018e367d9 100644
--- a/third_party/WebKit/Source/web/WebViewImplPaintArtifactCompositorTest.cpp
+++ b/third_party/WebKit/Source/web/WebViewImplPaintArtifactCompositorTest.cpp
@@ -57,7 +57,7 @@ protected:
MockWebLayerTreeView& webLayerTreeView() { return m_webLayerTreeView; }
WebViewImpl& webViewImpl() { return *m_helper.webViewImpl(); }
- PaintArtifactCompositor& paintArtifactCompositor() { return webViewImpl().paintArtifactCompositor(); }
+ PaintArtifactCompositor& getPaintArtifactCompositor() { return webViewImpl().getPaintArtifactCompositor(); }
private:
RuntimeEnabledFeatures::Backup m_featuresBackup;
@@ -68,7 +68,7 @@ private:
TEST_F(WebViewImplPaintArtifactCompositorTest, AttachAndDetach)
{
- cc::Layer* rootLayer = paintArtifactCompositor().rootLayer();
+ cc::Layer* rootLayer = getPaintArtifactCompositor().rootLayer();
ASSERT_TRUE(rootLayer);
EXPECT_CALL(webLayerTreeView(), setRootLayer(Property(&WebLayer::ccLayer, rootLayer)));
« no previous file with comments | « third_party/WebKit/Source/web/WebViewImpl.cpp ('k') | third_party/WebKit/Source/web/mac/WebSubstringUtil.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698