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 ca45d5128875c93244cf5767ee4f1a48c8c0d66a..cbd184de7d2086e19e16eeaaa240fe03e1681299 100644 |
| --- a/third_party/WebKit/Source/devtools/front_end/animation/AnimationModel.js |
| +++ b/third_party/WebKit/Source/devtools/front_end/animation/AnimationModel.js |
| @@ -895,7 +895,7 @@ WebInspector.AnimationModel.ScreenshotCapture.prototype = { |
| { |
| var screencastDuration = Math.min(duration / this._model._playbackRate, 3000); |
| var endTime = screencastDuration + window.performance.now(); |
| - this._requests.push({ endTime: endTime, screenshots: screenshots }); |
| + this._requests.push({ time: endTime, screenshots: screenshots }); |
|
lushnikov
2016/03/04 05:06:58
it should be endTime; the typedef is wrong.
kozy
2016/03/04 06:13:29
Done.
|
| if (!this._endTime || endTime > this._endTime) { |
| clearTimeout(this._stopTimer); |