Chromium Code Reviews| Index: third_party/WebKit/Source/web/tests/FrameTestHelpers.cpp |
| diff --git a/third_party/WebKit/Source/web/tests/FrameTestHelpers.cpp b/third_party/WebKit/Source/web/tests/FrameTestHelpers.cpp |
| index 438ebbfced6fda0aebe8d7233695c8fcb7aa4061..bb2a75404b9abfc7c546135053db949ec132e942 100644 |
| --- a/third_party/WebKit/Source/web/tests/FrameTestHelpers.cpp |
| +++ b/third_party/WebKit/Source/web/tests/FrameTestHelpers.cpp |
| @@ -309,5 +309,20 @@ void TestWebViewClient::initializeLayerTreeView() |
| m_layerTreeView = adoptPtr(new WebLayerTreeViewImplForTesting); |
| } |
| +void TestWebViewWidgetClient::initializeLayerTreeView() |
| +{ |
| + m_testWebViewClient->initializeLayerTreeView(); |
|
dcheng
2016/06/08 00:10:17
I don't think I understand why we need this forwar
lfg
2016/06/08 21:09:47
I switched TestWebWidgetClient to be a class inste
|
| +} |
| + |
| +WebLayerTreeView* TestWebViewWidgetClient::layerTreeView() |
| +{ |
| + return m_testWebViewClient->layerTreeView(); |
| +} |
| + |
| +void TestWebViewWidgetClient::scheduleAnimation() |
| +{ |
| + m_testWebViewClient->scheduleAnimation(); |
| +} |
| + |
| } // namespace FrameTestHelpers |
| } // namespace blink |