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

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

Issue 2361613002: DevTools: untangle device discovery request from the devtools android bridge. (Closed)
Patch Set: for landing Created 4 years, 2 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 294 matching lines...) Expand 10 before | Expand all | Expand 10 after
305 /** 305 /**
306 * @constructor 306 * @constructor
307 */ 307 */
308 function ExtensionReloadOptions() { 308 function ExtensionReloadOptions() {
309 this.ignoreCache = false; 309 this.ignoreCache = false;
310 this.injectedScript = ""; 310 this.injectedScript = "";
311 this.userAgent = ""; 311 this.userAgent = "";
312 } 312 }
313 313
314 var Adb = {}; 314 var Adb = {};
315 /** @typedef {{id: string, name: string, url: string, adbAttachedForeign: boolea n}} */ 315 /** @typedef {{id: string, name: string, url: string, attached: boolean}} */
316 Adb.Page; 316 Adb.Page;
317 /** @typedef {{id: string, adbBrowserChromeVersion: string, compatibleVersion: b oolean, adbBrowserName: string, source: string, adbBrowserVersion: string, pages : !Array<!Adb.Page>}} */ 317 /** @typedef {{id: string, adbBrowserChromeVersion: string, compatibleVersion: b oolean, adbBrowserName: string, source: string, adbBrowserVersion: string, pages : !Array<!Adb.Page>}} */
318 Adb.Browser; 318 Adb.Browser;
319 /** @typedef {{id: string, adbModel: string, adbSerial: string, browsers: !Array .<!Adb.Browser>, adbPortStatus: !Array.<number>, adbConnected: boolean}} */ 319 /** @typedef {{id: string, adbModel: string, adbSerial: string, browsers: !Array .<!Adb.Browser>, adbPortStatus: !Array.<number>, adbConnected: boolean}} */
320 Adb.Device; 320 Adb.Device;
321 /** @typedef {!Object.<string, string>} */ 321 /** @typedef {!Object.<string, string>} */
322 Adb.PortForwardingConfig; 322 Adb.PortForwardingConfig;
323 /** @typedef {!{port: string, address: string}} */ 323 /** @typedef {!{port: string, address: string}} */
324 Adb.PortForwardingRule; 324 Adb.PortForwardingRule;
325 /** @typedef {{ports: !Object<string, number>, browserId: string}} */ 325 /** @typedef {{ports: !Object<string, number>, browserId: string}} */
(...skipping 444 matching lines...) Expand 10 before | Expand all | Expand 10 after
770 /** @type {(string|!Array<!Gonzales.Node>)} */ 770 /** @type {(string|!Array<!Gonzales.Node>)} */
771 this.content; 771 this.content;
772 } 772 }
773 773
774 /** 774 /**
775 * @type {string} 775 * @type {string}
776 * @see http://heycam.github.io/webidl/#es-DOMException-prototype-object 776 * @see http://heycam.github.io/webidl/#es-DOMException-prototype-object
777 * TODO(jsbell): DOMException should be a subclass of Error. 777 * TODO(jsbell): DOMException should be a subclass of Error.
778 */ 778 */
779 DOMException.prototype.message; 779 DOMException.prototype.message;
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698