| Index: Source/devtools/front_end/sdk/Target.js
|
| diff --git a/Source/devtools/front_end/sdk/Target.js b/Source/devtools/front_end/sdk/Target.js
|
| index 551e1e20e9bdb5ab535e3355b11d60039b760de3..ddde70173843224f6b4cc389205199d0409f01d1 100644
|
| --- a/Source/devtools/front_end/sdk/Target.js
|
| +++ b/Source/devtools/front_end/sdk/Target.js
|
| @@ -27,7 +27,6 @@ WebInspector.Target = function(name, connection, callback)
|
| /** @type {!Object.<string, boolean>} */
|
| this._capabilities = {};
|
| this.pageAgent().canScreencast(this._initializeCapability.bind(this, WebInspector.Target.Capabilities.CanScreencast, null));
|
| - this.pageAgent().hasTouchInputs(this._initializeCapability.bind(this, WebInspector.Target.Capabilities.HasTouchInputs, null));
|
| if (WebInspector.experimentsSettings.timelinePowerProfiler.isEnabled())
|
| this.powerAgent().canProfilePower(this._initializeCapability.bind(this, WebInspector.Target.Capabilities.CanProfilePower, null));
|
| this.workerAgent().canInspectWorkers(this._initializeCapability.bind(this, WebInspector.Target.Capabilities.CanInspectWorkers, this._loadedWithCapabilities.bind(this, callback)));
|
|
|