Chromium Code Reviews| Index: third_party/WebKit/Source/devtools/front_end/animation/AnimationModel.js |
| diff --git a/third_party/WebKit/Source/devtools/front_end/animation/AnimationModel.js b/third_party/WebKit/Source/devtools/front_end/animation/AnimationModel.js |
| index dab936bf90f12ab8ec7a60dafd00f3e70163afb8..e0c27624a32433cff5ddff35ce94bb7d3959dd51 100644 |
| --- a/third_party/WebKit/Source/devtools/front_end/animation/AnimationModel.js |
| +++ b/third_party/WebKit/Source/devtools/front_end/animation/AnimationModel.js |
| @@ -883,7 +883,7 @@ WebInspector.AnimationModel.ScreenshotCapture = function(target, model) |
| this._model.addEventListener(WebInspector.AnimationModel.Events.ModelReset, this._stopScreencast, this); |
| } |
| -/** @typedef {{ time: number, endTime: number, screenshots: !Array.<string>}} */ |
| +/** @typedef {{ time: (number|undefined), endTime: number, screenshots: !Array.<string>}} */ |
|
lushnikov
2016/03/04 22:49:18
looks like "time" is never used
kozy
2016/03/04 23:18:50
Done.
|
| WebInspector.AnimationModel.ScreenshotCapture.Request; |
| WebInspector.AnimationModel.ScreenshotCapture.prototype = { |