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))); |