Index: third_party/WebKit/Source/devtools/front_end/profiler/CPUProfileDataGrid.js |
diff --git a/third_party/WebKit/Source/devtools/front_end/profiler/CPUProfileDataGrid.js b/third_party/WebKit/Source/devtools/front_end/profiler/CPUProfileDataGrid.js |
index f22469de52c6d23b143af8144f027d82154e8f2a..5b507f74a5c3b33e6864f58709b9ffc53b5745d3 100644 |
--- a/third_party/WebKit/Source/devtools/front_end/profiler/CPUProfileDataGrid.js |
+++ b/third_party/WebKit/Source/devtools/front_end/profiler/CPUProfileDataGrid.js |
@@ -75,7 +75,7 @@ WebInspector.ProfileDataGridNode.prototype = { |
if (this.profileNode.scriptId !== "0") { |
var target = this.tree.profileView.target(); |
- var callFrame = /** @type {!ConsoleAgent.CallFrame} */ (this.profileNode); |
+ var callFrame = /** @type {!RuntimeAgent.CallFrame} */ (this.profileNode); |
var urlElement = this.tree.profileView._linkifier.linkifyConsoleCallFrame(target, callFrame, "profile-node-file"); |
urlElement.style.maxWidth = "75%"; |
cell.insertBefore(urlElement, cell.firstChild); |