Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(223)

Unified Diff: third_party/WebKit/Source/devtools/front_end/host/InspectorFrontendHost.js

Issue 2864263002: [DevTools] Expose TCP targets config in frontend, use it for Node (Closed)
Patch Set: works Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/devtools/front_end/host/InspectorFrontendHost.js
diff --git a/third_party/WebKit/Source/devtools/front_end/host/InspectorFrontendHost.js b/third_party/WebKit/Source/devtools/front_end/host/InspectorFrontendHost.js
index 94f8b8ae6a86a77727c1da5a254792674378a184..dbb0faed7a9e5fc9f51cf5eb7aa0cad32d15fb0f 100644
--- a/third_party/WebKit/Source/devtools/front_end/host/InspectorFrontendHost.js
+++ b/third_party/WebKit/Source/devtools/front_end/host/InspectorFrontendHost.js
@@ -378,8 +378,12 @@ Host.InspectorFrontendHostStub = class {
* @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) {
}
/**

Powered by Google App Engine
This is Rietveld 408576698