| OLD | NEW |
| 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 Loading... |
| 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; |
| 347 | 349 |
| 348 /** @const */ | 350 /** @const */ |
| 349 var module = {}; | 351 var module = {}; |
| 350 | 352 |
| 351 /** | 353 /** |
| 352 * @constructor | 354 * @constructor |
| 353 */ | 355 */ |
| 354 function diff_match_patch() { | 356 function diff_match_patch() { |
| 355 } | 357 } |
| 356 | 358 |
| (...skipping 455 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 812 var Terminal = function(params) {}; | 814 var Terminal = function(params) {}; |
| 813 | 815 |
| 814 Terminal.prototype = { | 816 Terminal.prototype = { |
| 815 fit: function() {}, | 817 fit: function() {}, |
| 816 linkify: function() {}, | 818 linkify: function() {}, |
| 817 /** @param {!Element} element */ | 819 /** @param {!Element} element */ |
| 818 open: function(element) {}, | 820 open: function(element) {}, |
| 819 /** @param {string} eventName * @param {!Function} handler */ | 821 /** @param {string} eventName * @param {!Function} handler */ |
| 820 on: function(eventName, handler) {} | 822 on: function(eventName, handler) {} |
| 821 }; | 823 }; |
| OLD | NEW |