| Index: third_party/WebKit/Source/devtools/front_end/host/InspectorFrontendHostAPI.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/host/InspectorFrontendHostAPI.js b/third_party/WebKit/Source/devtools/front_end/host/InspectorFrontendHostAPI.js
|
| index d00516af944a4146fe3cee22359b3886922fed86..309fed71678284142de490a87f04a71673dda1bc 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/host/InspectorFrontendHostAPI.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/host/InspectorFrontendHostAPI.js
|
| @@ -65,7 +65,10 @@ InspectorFrontendHostAPI.EventDescriptors = [
|
| [InspectorFrontendHostAPI.Events.DeviceCountUpdated, 'deviceCountUpdated', ['count']],
|
| [
|
| InspectorFrontendHostAPI.Events.DevicesDiscoveryConfigChanged, 'devicesDiscoveryConfigChanged',
|
| - ['discoverUsbDevices', 'portForwardingEnabled', 'portForwardingConfig']
|
| + [
|
| + 'discoverUsbDevices', 'portForwardingEnabled', 'portForwardingConfig', 'networkDiscoveryEnabled',
|
| + 'networkDiscoveryConfig'
|
| + ]
|
| ],
|
| [
|
| InspectorFrontendHostAPI.Events.DevicesPortForwardingStatusChanged, 'devicesPortForwardingStatusChanged', ['status']
|
| @@ -253,8 +256,12 @@ InspectorFrontendHostAPI.prototype = {
|
| * @param {boolean} discoverUsbDevices
|
| * @param {boolean} portForwardingEnabled
|
| * @param {!Adb.PortForwardingConfig} portForwardingConfig
|
| + * @param {boolean} networkDiscoveryEnabled
|
| + * @param {!Adb.NetworkDiscoveryConfig} networkDiscoveryConfig
|
| */
|
| - setDevicesDiscoveryConfig(discoverUsbDevices, portForwardingEnabled, portForwardingConfig) {},
|
| + setDevicesDiscoveryConfig(
|
| + discoverUsbDevices, portForwardingEnabled, portForwardingConfig, networkDiscoveryEnabled,
|
| + networkDiscoveryConfig) {},
|
|
|
| /**
|
| * @param {boolean} enabled
|
|
|