Skip to content

Commit

Permalink
devtools: regenerate protocol-related files
Browse files Browse the repository at this point in the history
  • Loading branch information
darwin committed Oct 22, 2016
1 parent 7ab437e commit 407b223
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 24 deletions.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
WebInspector.BakedSupportedCSSPropertiesChromeTag='56.0.2896.2';
WebInspector.BakedSupportedCSSPropertiesChromeRev='4abae818f5a6e89e539c091819f55d113cf2dc46';
WebInspector.BakedSupportedCSSPropertiesChromeTag='56.0.2898.2';
WebInspector.BakedSupportedCSSPropertiesChromeRev='352b045421e6e2ceeba083eeebd27f64adf41194';
WebInspector.BakedSupportedCSSProperties=''
+ '[{"name": "color", "inherited": true},\n'
+ ' {"name": "direction", "inherited": true},\n'
Expand Down
58 changes: 38 additions & 20 deletions resources/unpacked/devtools/front_end/generated_protocol_externs.js
Original file line number Diff line number Diff line change
Expand Up @@ -2992,76 +2992,94 @@ InputAgent.Dispatcher = function() {};
Protocol.LayerTreeAgent = function(){};

/**
* @param {function(?Protocol.Error):void=} opt_callback
* @param {function(?Protocol.Error):T=} opt_callback
* @return {!Promise.<T>}
* @template T
*/
Protocol.LayerTreeAgent.prototype.enable = function(opt_callback) {}
/** @param {function(?Protocol.Error):void=} opt_callback */
Protocol.LayerTreeAgent.prototype.invoke_enable = function(obj, opt_callback) {}

/**
* @param {function(?Protocol.Error):void=} opt_callback
* @param {function(?Protocol.Error):T=} opt_callback
* @return {!Promise.<T>}
* @template T
*/
Protocol.LayerTreeAgent.prototype.disable = function(opt_callback) {}
/** @param {function(?Protocol.Error):void=} opt_callback */
Protocol.LayerTreeAgent.prototype.invoke_disable = function(obj, opt_callback) {}

/**
* @param {LayerTreeAgent.LayerId} layerId
* @param {function(?Protocol.Error, !Array.<string>):void=} opt_callback
* @param {function(?Protocol.Error, !Array.<string>):T} opt_callback
* @return {!Promise.<T>}
* @template T
*/
Protocol.LayerTreeAgent.prototype.compositingReasons = function(layerId, opt_callback) {}
/** @param {function(?Protocol.Error, !Array.<string>):void=} opt_callback */
Protocol.LayerTreeAgent.prototype.invoke_compositingReasons = function(obj, opt_callback) {}

/**
* @param {LayerTreeAgent.LayerId} layerId
* @param {function(?Protocol.Error, LayerTreeAgent.SnapshotId):void=} opt_callback
* @param {function(?Protocol.Error, LayerTreeAgent.SnapshotId):T} opt_callback
* @return {!Promise.<T>}
* @template T
*/
Protocol.LayerTreeAgent.prototype.makeSnapshot = function(layerId, opt_callback) {}
/** @param {function(?Protocol.Error, LayerTreeAgent.SnapshotId):void=} opt_callback */
Protocol.LayerTreeAgent.prototype.invoke_makeSnapshot = function(obj, opt_callback) {}

/**
* @param {!Array.<LayerTreeAgent.PictureTile>} tiles
* @param {function(?Protocol.Error, LayerTreeAgent.SnapshotId):void=} opt_callback
* @param {function(?Protocol.Error, LayerTreeAgent.SnapshotId):T} opt_callback
* @return {!Promise.<T>}
* @template T
*/
Protocol.LayerTreeAgent.prototype.loadSnapshot = function(tiles, opt_callback) {}
/** @param {function(?Protocol.Error, LayerTreeAgent.SnapshotId):void=} opt_callback */
Protocol.LayerTreeAgent.prototype.invoke_loadSnapshot = function(obj, opt_callback) {}

/**
* @param {LayerTreeAgent.SnapshotId} snapshotId
* @param {function(?Protocol.Error):void=} opt_callback
* @param {function(?Protocol.Error):T=} opt_callback
* @return {!Promise.<T>}
* @template T
*/
Protocol.LayerTreeAgent.prototype.releaseSnapshot = function(snapshotId, opt_callback) {}
/** @param {function(?Protocol.Error):void=} opt_callback */
Protocol.LayerTreeAgent.prototype.invoke_releaseSnapshot = function(obj, opt_callback) {}

/**
* @param {LayerTreeAgent.SnapshotId} snapshotId
* @param {number=} opt_minRepeatCount
* @param {number=} opt_minDuration
* @param {DOMAgent.Rect=} opt_clipRect
* @param {function(?Protocol.Error, !Array.<LayerTreeAgent.PaintProfile>):void=} opt_callback
* @param {number|undefined} minRepeatCount
* @param {number|undefined} minDuration
* @param {DOMAgent.Rect|undefined} clipRect
* @param {function(?Protocol.Error, !Array.<LayerTreeAgent.PaintProfile>):T} opt_callback
* @return {!Promise.<T>}
* @template T
*/
Protocol.LayerTreeAgent.prototype.profileSnapshot = function(snapshotId, opt_minRepeatCount, opt_minDuration, opt_clipRect, opt_callback) {}
Protocol.LayerTreeAgent.prototype.profileSnapshot = function(snapshotId, minRepeatCount, minDuration, clipRect, opt_callback) {}
/** @param {function(?Protocol.Error, !Array.<LayerTreeAgent.PaintProfile>):void=} opt_callback */
Protocol.LayerTreeAgent.prototype.invoke_profileSnapshot = function(obj, opt_callback) {}

/**
* @param {LayerTreeAgent.SnapshotId} snapshotId
* @param {number=} opt_fromStep
* @param {number=} opt_toStep
* @param {number=} opt_scale
* @param {function(?Protocol.Error, string):void=} opt_callback
* @param {number|undefined} fromStep
* @param {number|undefined} toStep
* @param {number|undefined} scale
* @param {function(?Protocol.Error, string):T} opt_callback
* @return {!Promise.<T>}
* @template T
*/
Protocol.LayerTreeAgent.prototype.replaySnapshot = function(snapshotId, opt_fromStep, opt_toStep, opt_scale, opt_callback) {}
Protocol.LayerTreeAgent.prototype.replaySnapshot = function(snapshotId, fromStep, toStep, scale, opt_callback) {}
/** @param {function(?Protocol.Error, string):void=} opt_callback */
Protocol.LayerTreeAgent.prototype.invoke_replaySnapshot = function(obj, opt_callback) {}

/**
* @param {LayerTreeAgent.SnapshotId} snapshotId
* @param {function(?Protocol.Error, !Array.<!Object>):void=} opt_callback
* @param {function(?Protocol.Error, !Array.<!Object>):T} opt_callback
* @return {!Promise.<T>}
* @template T
*/
Protocol.LayerTreeAgent.prototype.snapshotCommandLog = function(snapshotId, opt_callback) {}
/** @param {function(?Protocol.Error, !Array.<!Object>):void=} opt_callback */
Expand Down Expand Up @@ -3620,9 +3638,9 @@ Protocol.BrowserAgent.prototype.invoke_disposeBrowserContext = function(obj, opt

/**
* @param {string} url
* @param {number} width
* @param {number} height
* @param {BrowserAgent.BrowserContextID} browserContextId
* @param {number|undefined} width
* @param {number|undefined} height
* @param {BrowserAgent.BrowserContextID|undefined} browserContextId
* @param {function(?Protocol.Error, BrowserAgent.TargetID):T} opt_callback
* @return {!Promise.<T>}
* @template T
Expand Down

0 comments on commit 407b223

Please sign in to comment.