| Index: Source/web/InspectorClientImpl.cpp
|
| diff --git a/Source/web/InspectorClientImpl.cpp b/Source/web/InspectorClientImpl.cpp
|
| index 0ddc4cca539d0bdbaf39b62bbf5c22f4684e5276..2b9981bcce118730c6a2d0fe9ef8063ac5be2315 100644
|
| --- a/Source/web/InspectorClientImpl.cpp
|
| +++ b/Source/web/InspectorClientImpl.cpp
|
| @@ -114,6 +114,13 @@ void InspectorClientImpl::setTouchEventEmulationEnabled(bool enabled)
|
| agent->setTouchEventEmulationEnabled(enabled);
|
| }
|
|
|
| +bool InspectorClientImpl::hasTouchInputs()
|
| +{
|
| + if (WebDevToolsAgentImpl* agent = devToolsAgent())
|
| + return agent->hasTouchInputs();
|
| + return false;
|
| +}
|
| +
|
| bool InspectorClientImpl::overridesShowPaintRects()
|
| {
|
| return m_inspectedWebView->isAcceleratedCompositingActive();
|
|
|