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

Unified Diff: third_party/WebKit/LayoutTests/inspector/profiler/cpu-profiler-native-nodes-filter.html

Issue 1889963003: Revert of DevTools: extract CPU profile independent part of CPUProfileNode. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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/profiler/cpu-profiler-native-nodes-filter.html
diff --git a/third_party/WebKit/LayoutTests/inspector/profiler/cpu-profiler-native-nodes-filter.html b/third_party/WebKit/LayoutTests/inspector/profiler/cpu-profiler-native-nodes-filter.html
index 0356a4d5ed5c6ef8f5d67ec4b6416c08b94799a1..19551793168178497b7da920e9b9e6f2cdd1d092 100644
--- a/third_party/WebKit/LayoutTests/inspector/profiler/cpu-profiler-native-nodes-filter.html
+++ b/third_party/WebKit/LayoutTests/inspector/profiler/cpu-profiler-native-nodes-filter.html
@@ -104,15 +104,15 @@
]
},
"idleTime": 202.88199791684747,
- "startTime": 100000,
- "endTime": 100000 + 111.110 + 22.220 + 1.000,
+ "startTime": 1375445600.000847,
+ "endTime": 1375445601.070847,
"samples": [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 ]
};
var model = new WebInspector.CPUProfileDataModel(profile);
printTree("", model.profileHead);
function printTree(padding, node)
{
- InspectorTest.addResult(`${padding}${node.functionName} id:${node.id} total:${node.total} self:${node.self} depth:${node.depth}`);
+ InspectorTest.addResult(padding + node.functionName + " id:" + node.id + " hits:" + node.hitCount + " depth:" + node.depth);
node.children.forEach(printTree.bind(null, padding + " "));
}
InspectorTest.addResult(model.samples.join(", "));

Powered by Google App Engine
This is Rietveld 408576698