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

Unified Diff: Source/devtools/front_end/timeline/TimelineModelImpl.js

Issue 465223002: [ Do not submit ] Prototype for invalidation analysis Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix multiple paint bug, fix bug where nodes did not linkify properly, minor cleanups Created 6 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 side-by-side diff with in-line comments
Download patch
Index: Source/devtools/front_end/timeline/TimelineModelImpl.js
diff --git a/Source/devtools/front_end/timeline/TimelineModelImpl.js b/Source/devtools/front_end/timeline/TimelineModelImpl.js
index dcf632eda72d583891b2d206fbe7abb1ecc4dc2f..206b6c7cce0adf9277af0a1d392284ac84c31875 100644
--- a/Source/devtools/front_end/timeline/TimelineModelImpl.js
+++ b/Source/devtools/front_end/timeline/TimelineModelImpl.js
@@ -45,10 +45,12 @@ WebInspector.TimelineModelImpl.prototype = {
* @param {boolean} captureStacks
* @param {boolean} captureMemory
* @param {boolean} capturePictures
+ * @param {boolean} captureInvalidationTracking
*/
- startRecording: function(captureStacks, captureMemory, capturePictures)
+ startRecording: function(captureStacks, captureMemory, capturePictures, captureInvalidationTracking)
{
console.assert(!capturePictures, "Legacy timeline does not support capturing pictures");
+ console.assert(!captureInvalidationTracking, "Legacy timeline does not support invalidation tracking.");
this.reset();
this._currentTarget = WebInspector.context.flavor(WebInspector.Target);
console.assert(this._currentTarget);

Powered by Google App Engine
This is Rietveld 408576698