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

Unified Diff: tracing/tracing/extras/chrome/render_frame.html

Issue 1911603002: LayoutTree machinery (Closed) Base URL: https://chromium.googlesource.com/external/github.com/catapult-project/catapult.git@master
Patch Set: oops Created 4 years, 7 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 | « tracing/tracing/extras/chrome/layout_tree.html ('k') | tracing/tracing/metrics/all_metrics.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tracing/tracing/extras/chrome/render_frame.html
diff --git a/tracing/tracing/extras/chrome/render_frame.html b/tracing/tracing/extras/chrome/render_frame.html
index 289477d18adf50c97f02dda62438efb67115df4d..792fff0407e9a53c46ffd32a85c6be411562fa46 100644
--- a/tracing/tracing/extras/chrome/render_frame.html
+++ b/tracing/tracing/extras/chrome/render_frame.html
@@ -18,6 +18,7 @@ tr.exportTo('tr.e.chrome', function() {
function RenderFrameSnapshot() {
ObjectSnapshot.apply(this, arguments);
+ this.layoutTreeSnapshot = this.args.LayoutTree;
}
RenderFrameSnapshot.prototype = {
@@ -30,25 +31,25 @@ tr.exportTo('tr.e.chrome', function() {
},
get userFriendlyName() {
- return 'RenderFrame';
+ return 'Frame';
}
};
ObjectSnapshot.register(
RenderFrameSnapshot,
- {typeName: 'RenderFrame'});
+ {typeName: 'Frame'});
function RenderFrameInstance() {
ObjectInstance.apply(this, arguments);
}
RenderFrameInstance.prototype = {
- __proto__: ObjectInstance.prototype
+ __proto__: ObjectInstance.prototype,
};
ObjectInstance.register(
RenderFrameInstance,
- {typeName: 'RenderFrame'});
+ {typeName: 'Frame'});
return {
RenderFrameSnapshot: RenderFrameSnapshot,
« no previous file with comments | « tracing/tracing/extras/chrome/layout_tree.html ('k') | tracing/tracing/metrics/all_metrics.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698