| Index: third_party/WebKit/Source/devtools/front_end/screencast/InputModel.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/screencast/InputModel.js b/third_party/WebKit/Source/devtools/front_end/screencast/InputModel.js
|
| index fc96e7e094e5d67bac4581ca9d127cdfb1037932..d3f09c51a1a761d81f9349b90283becfa7934ca0 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/screencast/InputModel.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/screencast/InputModel.js
|
| @@ -5,10 +5,11 @@
|
| Screencast.InputModel = class extends SDK.SDKModel {
|
| /**
|
| * @param {!SDK.Target} target
|
| + * @param {!Protocol.Dispatcher} dispatcher
|
| */
|
| - constructor(target) {
|
| - super(target);
|
| - this._inputAgent = target.inputAgent();
|
| + constructor(target, dispatcher) {
|
| + super(target, dispatcher);
|
| + this._inputAgent = dispatcher.inputAgent();
|
| /** @type {?number} */
|
| this._activeTouchOffsetTop = null;
|
| this._activeTouchParams = null;
|
|
|