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

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

Issue 761143003: DevTools: remove ScriptPreprocessor (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase Created 5 years, 10 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 | Annotate | Revision Log
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 272 matching lines...) Expand 10 before | Expand all | Expand 10 after
283 this.startPage = ""; 283 this.startPage = "";
284 this.name = ""; 284 this.name = "";
285 } 285 }
286 286
287 /** 287 /**
288 * @constructor 288 * @constructor
289 */ 289 */
290 function ExtensionReloadOptions() { 290 function ExtensionReloadOptions() {
291 this.ignoreCache = false; 291 this.ignoreCache = false;
292 this.injectedScript = ""; 292 this.injectedScript = "";
293 this.preprocessingScript = "";
294 this.userAgent = ""; 293 this.userAgent = "";
295 } 294 }
296 295
297 var Adb = {}; 296 var Adb = {};
298 /** @typedef {{id: string, adbBrowserChromeVersion: string, compatibleVersion: b oolean, adbBrowserName: string, source: string, adbBrowserVersion: string}} */ 297 /** @typedef {{id: string, adbBrowserChromeVersion: string, compatibleVersion: b oolean, adbBrowserName: string, source: string, adbBrowserVersion: string}} */
299 Adb.Browser; 298 Adb.Browser;
300 /** @typedef {{id: string, adbModel: string, adbSerial: string, browsers: !Array .<!Adb.Browser>, adbPortStatus: !Array.<number>, adbConnected: boolean}} */ 299 /** @typedef {{id: string, adbModel: string, adbSerial: string, browsers: !Array .<!Adb.Browser>, adbPortStatus: !Array.<number>, adbConnected: boolean}} */
301 Adb.Device; 300 Adb.Device;
302 301
303 /* jsdifflib API */ 302 /* jsdifflib API */
(...skipping 416 matching lines...) Expand 10 before | Expand all | Expand 10 after
720 * @return {boolean} 719 * @return {boolean}
721 */ 720 */
722 ArrayBuffer.isView = function(obj) { } 721 ArrayBuffer.isView = function(obj) { }
723 722
724 /** 723 /**
725 * @param {Array.<Object>} keyframes 724 * @param {Array.<Object>} keyframes
726 * @param {number|Object} timing 725 * @param {number|Object} timing
727 * @return {Object} 726 * @return {Object}
728 */ 727 */
729 Element.prototype.animate = function(keyframes, timing) { } 728 Element.prototype.animate = function(keyframes, timing) { }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/extensions/ExtensionServer.js ('k') | Source/devtools/front_end/sdk/ResourceTreeModel.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698