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

Unified Diff: third_party/WebKit/Source/devtools/front_end/timeline/TimelineTreeView.js

Issue 2145483002: [DevTools] make Runtime.CallFrame 0-based (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: a Created 4 years, 5 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/timeline/TimelineTreeView.js
diff --git a/third_party/WebKit/Source/devtools/front_end/timeline/TimelineTreeView.js b/third_party/WebKit/Source/devtools/front_end/timeline/TimelineTreeView.js
index 025a36caf37045429a63d8b883d558c6a4a22cab..21471d7924f7a6ca14ebe64eaa8873000ce5ac8c 100644
--- a/third_party/WebKit/Source/devtools/front_end/timeline/TimelineTreeView.js
+++ b/third_party/WebKit/Source/devtools/front_end/timeline/TimelineTreeView.js
@@ -86,7 +86,7 @@ WebInspector.TimelineTreeView.prototype = {
*/
linkifyLocation: function(frame)
{
- return this._linkifier.linkifyConsoleCallFrame(this._model.target(), frame);
+ return this._linkifier.linkifyConsoleCallFrameForTimeline(this._model.target(), frame);
},
/**
@@ -618,10 +618,10 @@ WebInspector.AggregatedTimelineTreeView.prototype = {
*/
_createAggregator: function()
{
- return new WebInspector.TimelineAggregator(
- event => WebInspector.TimelineUIUtils.eventStyle(event).title,
- event => WebInspector.TimelineUIUtils.eventStyle(event).category.name
- );
+ return new WebInspector.TimelineAggregator(
+ event => WebInspector.TimelineUIUtils.eventStyle(event).title,
+ event => WebInspector.TimelineUIUtils.eventStyle(event).category.name
+ );
},
__proto__: WebInspector.TimelineTreeView.prototype,

Powered by Google App Engine
This is Rietveld 408576698