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

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

Issue 2771723003: [tracing] Move math utilities from base into their own subdirectory (attempt 2) (Closed)
Patch Set: rebase Created 3 years, 9 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: tracing/tracing/extras/chrome/layout_object.html
diff --git a/tracing/tracing/extras/chrome/layout_object.html b/tracing/tracing/extras/chrome/layout_object.html
index f23a181ab0630c3066049b1fe6f606c087af808f..e9528ab243288c9d8340d77263cff806860f8cd8 100644
--- a/tracing/tracing/extras/chrome/layout_object.html
+++ b/tracing/tracing/extras/chrome/layout_object.html
@@ -46,9 +46,9 @@ tr.exportTo('tr.e.chrome', function() {
this.childLayoutObjects_ = [];
this.otherProperties_ = {};
this.tag_ = args.tag;
- this.relativeRect_ = tr.b.Rect.fromXYWH(
+ this.relativeRect_ = tr.b.math.Rect.fromXYWH(
args.relX, args.relY, args.width, args.height);
- this.absoluteRect_ = tr.b.Rect.fromXYWH(
+ this.absoluteRect_ = tr.b.math.Rect.fromXYWH(
args.absX, args.absY, args.width, args.height);
this.isFloat_ = args.float;
this.isStickyPositioned_ = args.stickyPositioned;
« no previous file with comments | « tracing/tracing/extras/chrome/estimated_input_latency_test.html ('k') | tracing/tracing/extras/cpu/cpu_usage_auditor.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698