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

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

Issue 2228773002: Remove AnimationEffectTimingProperties playbackRate (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@idl-updates
Patch Set: Add TODO Created 4 years, 4 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
« no previous file with comments | « third_party/WebKit/Source/core/inspector/browser_protocol.json ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2014 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 5
6 /** 6 /**
7 * @constructor 7 * @constructor
8 * @extends {WebInspector.SDKModel} 8 * @extends {WebInspector.SDKModel}
9 * @param {!WebInspector.Target} target 9 * @param {!WebInspector.Target} target
10 */ 10 */
(...skipping 449 matching lines...) Expand 10 before | Expand all | Expand 10 after
460 * @return {number} 460 * @return {number}
461 */ 461 */
462 endDelay: function() 462 endDelay: function()
463 { 463 {
464 return this._payload.endDelay; 464 return this._payload.endDelay;
465 }, 465 },
466 466
467 /** 467 /**
468 * @return {number} 468 * @return {number}
469 */ 469 */
470 playbackRate: function()
471 {
472 return this._payload.playbackRate;
473 },
474
475 /**
476 * @return {number}
477 */
478 iterationStart: function() 470 iterationStart: function()
479 { 471 {
480 return this._payload.iterationStart; 472 return this._payload.iterationStart;
481 }, 473 },
482 474
483 /** 475 /**
484 * @return {number} 476 * @return {number}
485 */ 477 */
486 iterations: function() 478 iterations: function()
487 { 479 {
(...skipping 457 matching lines...) Expand 10 before | Expand all | Expand 10 after
945 if (!this._capturing) 937 if (!this._capturing)
946 return; 938 return;
947 939
948 delete this._stopTimer; 940 delete this._stopTimer;
949 delete this._endTime; 941 delete this._endTime;
950 this._requests = []; 942 this._requests = [];
951 this._capturing = false; 943 this._capturing = false;
952 this._target.pageAgent().stopScreencast(); 944 this._target.pageAgent().stopScreencast();
953 } 945 }
954 } 946 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/inspector/browser_protocol.json ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698