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

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

Issue 335103003: Use TimelineUIUtils to create BeginFrame divider (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 6 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/TimelineView.js
diff --git a/Source/devtools/front_end/timeline/TimelineView.js b/Source/devtools/front_end/timeline/TimelineView.js
index 2072f44a126a1d35933244728255697860db47c3..5b5fc6333eb808f38a00b91dbbbc776730f54ba2 100644
--- a/Source/devtools/front_end/timeline/TimelineView.js
+++ b/Source/devtools/front_end/timeline/TimelineView.js
@@ -182,7 +182,7 @@ WebInspector.TimelineView.prototype = {
this._frameContainer.appendChild(frameStrip);
if (actualStart > 0) {
- var frameMarker = this._uiUtils.createEventDivider(WebInspector.TimelineModel.RecordType.BeginFrame);
+ var frameMarker = this._uiUtils.createBeginFrameDivider();
frameMarker.style.left = frameStart + "px";
dividers.push(frameMarker);
}

Powered by Google App Engine
This is Rietveld 408576698