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

Unified Diff: third_party/WebKit/LayoutTests/inspector-protocol/cpu-profiler/console-profile.html

Issue 2150803002: [DevTools] Add callFrame to CPUProfileNode & SamplingHeapProfileNode (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/LayoutTests/inspector-protocol/cpu-profiler/console-profile.html
diff --git a/third_party/WebKit/LayoutTests/inspector-protocol/cpu-profiler/console-profile.html b/third_party/WebKit/LayoutTests/inspector-protocol/cpu-profiler/console-profile.html
index ad273198d70c3815bd393e2f2aa9e6bd813e2c58..2df66b4aa33fdef4f08a0b106bff6dae67509b70 100644
--- a/third_party/WebKit/LayoutTests/inspector-protocol/cpu-profiler/console-profile.html
+++ b/third_party/WebKit/LayoutTests/inspector-protocol/cpu-profiler/console-profile.html
@@ -55,7 +55,7 @@ function test()
function findFunctionInProfile(node, functionName)
{
- if (node.functionName === functionName)
+ if (node.callFrame.functionName === functionName)
return true;
var children = node.children;
for (var i = 0; i < children.length; ++i)

Powered by Google App Engine
This is Rietveld 408576698