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

Unified Diff: third_party/WebKit/Source/devtools/front_end/profiler/CPUProfileDataGrid.js

Issue 1666563005: DevTools: merge ScriptCallStack and ScriptAsyncCallStack, move CallStacks from console to Runtime. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: testts Created 4 years, 10 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/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);

Powered by Google App Engine
This is Rietveld 408576698