| Index: Source/web/InspectorClientImpl.cpp
|
| diff --git a/Source/web/InspectorClientImpl.cpp b/Source/web/InspectorClientImpl.cpp
|
| index 55e9f8f57294fb29d75c102eed35030f133ca820..0ddc4cca539d0bdbaf39b62bbf5c22f4684e5276 100644
|
| --- a/Source/web/InspectorClientImpl.cpp
|
| +++ b/Source/web/InspectorClientImpl.cpp
|
| @@ -108,6 +108,12 @@ void InspectorClientImpl::overrideDeviceMetrics(int width, int height, float dev
|
| agent->overrideDeviceMetrics(width, height, deviceScaleFactor, emulateViewport, fitWindow);
|
| }
|
|
|
| +void InspectorClientImpl::setTouchEventEmulationEnabled(bool enabled)
|
| +{
|
| + if (WebDevToolsAgentImpl* agent = devToolsAgent())
|
| + agent->setTouchEventEmulationEnabled(enabled);
|
| +}
|
| +
|
| bool InspectorClientImpl::overridesShowPaintRects()
|
| {
|
| return m_inspectedWebView->isAcceleratedCompositingActive();
|
|
|