| Index: third_party/WebKit/Source/devtools/front_end/emulation/TouchModel.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/emulation/TouchModel.js b/third_party/WebKit/Source/devtools/front_end/emulation/TouchModel.js
|
| index d0a39d7f48e980823373d06a019c4020fdecf49c..b39ce97468595307fba47b88d3f923b0452cbce2 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/emulation/TouchModel.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/emulation/TouchModel.js
|
| @@ -12,7 +12,7 @@ WebInspector.MultitargetTouchModel = function()
|
| this._touchMobile = false;
|
| this._customTouchEnabled = false;
|
|
|
| - WebInspector.targetManager.observeTargets(this, WebInspector.Target.Type.Page);
|
| + WebInspector.targetManager.observeTargets(this, WebInspector.Target.Capability.Browser);
|
| }
|
|
|
| WebInspector.MultitargetTouchModel._symbol = Symbol("MultitargetTouchModel.symbol");
|
| @@ -40,7 +40,7 @@ WebInspector.MultitargetTouchModel.prototype = {
|
|
|
| _updateAllTargets: function()
|
| {
|
| - for (var target of WebInspector.targetManager.targets(WebInspector.Target.Type.Page))
|
| + for (var target of WebInspector.targetManager.targets(WebInspector.Target.Capability.Browser))
|
| this._applyToTarget(target);
|
| },
|
|
|
|
|