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

Unified Diff: third_party/WebKit/LayoutTests/inspector/profiler/cpu-profiler-bottom-up-times.html

Issue 2321163003: DevTools: Support profile trees encoded with parents rather than children. (Closed)
Patch Set: Created 4 years, 3 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/devtools/front_end/sdk/CPUProfileDataModel.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/inspector/profiler/cpu-profiler-bottom-up-times.html
diff --git a/third_party/WebKit/LayoutTests/inspector/profiler/cpu-profiler-bottom-up-times.html b/third_party/WebKit/LayoutTests/inspector/profiler/cpu-profiler-bottom-up-times.html
index caeb35d415c97d83bcf8efd0766f5ac01ffbf983..478da07633e1b856ee3927ce7a1639364c084b0f 100644
--- a/third_party/WebKit/LayoutTests/inspector/profiler/cpu-profiler-bottom-up-times.html
+++ b/third_party/WebKit/LayoutTests/inspector/profiler/cpu-profiler-bottom-up-times.html
@@ -22,8 +22,7 @@ function test()
"url": "a.js",
"lineNumber": 0
},
- "hitCount": 350,
- "children": [1, 2, 5]
+ "hitCount": 350
},
{
"id": 1,
@@ -35,7 +34,7 @@ function test()
"lineNumber": 1
},
"hitCount": 1000,
- "children": []
+ "parent": 0
},
{
"id": 2,
@@ -47,7 +46,7 @@ function test()
"lineNumber": 4642
},
"hitCount": 250,
- "children": [3]
+ "parent": 0
},
{
"id": 3,
@@ -59,7 +58,7 @@ function test()
"lineNumber": 525
},
"hitCount": 100,
- "children": [4]
+ "parent": 2
},
{
"id": 4,
@@ -71,7 +70,7 @@ function test()
"lineNumber": 425
},
"hitCount": 20,
- "children": []
+ "parent": 3
},
{
"id": 5,
@@ -83,7 +82,7 @@ function test()
"lineNumber": 4662
},
"hitCount": 150,
- "children": [6]
+ "parent": 0
},
{
"id": 6,
@@ -95,7 +94,7 @@ function test()
"lineNumber": 525
},
"hitCount": 100,
- "children": [7]
+ "parent": 5
},
{
"id": 7,
@@ -107,7 +106,7 @@ function test()
"lineNumber": 425
},
"hitCount": 30,
- "children": []
+ "parent": 6
}
],
"startTime": 0,
« no previous file with comments | « no previous file | third_party/WebKit/Source/devtools/front_end/sdk/CPUProfileDataModel.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698