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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/externs.js

Issue 2864263002: [DevTools] Expose TCP targets config in frontend, use it for Node (Closed)
Patch Set: panel 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2011 Google Inc. All rights reserved. 2 * Copyright (C) 2011 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 326 matching lines...) Expand 10 before | Expand all | Expand 10 after
337 /** @typedef {{id: string, adbModel: string, adbSerial: string, browsers: !Array .<!Adb.Browser>, adbPortStatus: !Array.<number>, adbConnected: boolean}} */ 337 /** @typedef {{id: string, adbModel: string, adbSerial: string, browsers: !Array .<!Adb.Browser>, adbPortStatus: !Array.<number>, adbConnected: boolean}} */
338 Adb.Device; 338 Adb.Device;
339 /** @typedef {!Object.<string, string>} */ 339 /** @typedef {!Object.<string, string>} */
340 Adb.PortForwardingConfig; 340 Adb.PortForwardingConfig;
341 /** @typedef {!{port: string, address: string}} */ 341 /** @typedef {!{port: string, address: string}} */
342 Adb.PortForwardingRule; 342 Adb.PortForwardingRule;
343 /** @typedef {{ports: !Object<string, number>, browserId: string}} */ 343 /** @typedef {{ports: !Object<string, number>, browserId: string}} */
344 Adb.DevicePortForwardingStatus; 344 Adb.DevicePortForwardingStatus;
345 /** @typedef {!Object<string, !Adb.DevicePortForwardingStatus>} */ 345 /** @typedef {!Object<string, !Adb.DevicePortForwardingStatus>} */
346 Adb.PortForwardingStatus; 346 Adb.PortForwardingStatus;
347 /** @typedef {!Array<string>} */
348 Adb.NetworkDiscoveryConfig;
349 /**
350 * @typedef {!{
351 * discoverUsbDevices: boolean,
352 * portForwardingEnabled: boolean,
353 * portForwardingConfig: !Adb.PortForwardingConfig,
354 * networkDiscoveryEnabled: boolean,
355 * networkDiscoveryConfig: !Adb.NetworkDiscoveryConfig
356 * }}
357 */
358 Adb.Config;
347 359
348 /** @const */ 360 /** @const */
349 var module = {}; 361 var module = {};
350 362
351 /** 363 /**
352 * @constructor 364 * @constructor
353 */ 365 */
354 function diff_match_patch() { 366 function diff_match_patch() {
355 } 367 }
356 368
(...skipping 455 matching lines...) Expand 10 before | Expand all | Expand 10 after
812 var Terminal = function(params) {}; 824 var Terminal = function(params) {};
813 825
814 Terminal.prototype = { 826 Terminal.prototype = {
815 fit: function() {}, 827 fit: function() {},
816 linkify: function() {}, 828 linkify: function() {},
817 /** @param {!Element} element */ 829 /** @param {!Element} element */
818 open: function(element) {}, 830 open: function(element) {},
819 /** @param {string} eventName * @param {!Function} handler */ 831 /** @param {string} eventName * @param {!Function} handler */
820 on: function(eventName, handler) {} 832 on: function(eventName, handler) {}
821 }; 833 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698