| Index: third_party/WebKit/Source/web/tests/WebInputEventConversionTest.cpp
 | 
| diff --git a/third_party/WebKit/Source/web/tests/WebInputEventConversionTest.cpp b/third_party/WebKit/Source/web/tests/WebInputEventConversionTest.cpp
 | 
| index 03218dd2171a00f6d4656e6f6ae730e24317618a..b0dde47babc840798ef4beee5d3285a1f60bc38e 100644
 | 
| --- a/third_party/WebKit/Source/web/tests/WebInputEventConversionTest.cpp
 | 
| +++ b/third_party/WebKit/Source/web/tests/WebInputEventConversionTest.cpp
 | 
| @@ -43,10 +43,12 @@
 | 
|  #include "core/frame/VisualViewport.h"
 | 
|  #include "core/layout/api/LayoutViewItem.h"
 | 
|  #include "core/page/Page.h"
 | 
| +#include "platform/geometry/IntSize.h"
 | 
|  #include "platform/testing/URLTestHelpers.h"
 | 
|  #include "public/web/WebFrame.h"
 | 
|  #include "public/web/WebSettings.h"
 | 
|  #include "testing/gtest/include/gtest/gtest.h"
 | 
| +#include "web/WebLocalFrameImpl.h"
 | 
|  #include "web/WebViewImpl.h"
 | 
|  #include "web/tests/FrameTestHelpers.h"
 | 
|  
 | 
| @@ -512,7 +514,7 @@ TEST(WebInputEventConversionTest, InputEventsTransform)
 | 
|      webViewImpl->updateAllLifecyclePhases();
 | 
|  
 | 
|      webViewImpl->setPageScaleFactor(2);
 | 
| -    webViewImpl->setRootLayerTransform(WebSize(10, 20), 1.5);
 | 
| +    webViewImpl->mainFrameImpl()->setInputEventsTransformForEmulation(IntSize(10, 20), 1.5);
 | 
|  
 | 
|      FrameView* view = toLocalFrame(webViewImpl->page()->mainFrame())->view();
 | 
|  
 | 
| 
 |