| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |