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

Unified Diff: third_party/WebKit/Source/devtools/front_end/animation/AnimationModel.js

Issue 1761243002: [DevTools] Fix compile errors before closure compiler roll (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@prepare-bindings-module
Patch Set: Created 4 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 side-by-side diff with in-line comments
Download patch
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);

Powered by Google App Engine
This is Rietveld 408576698