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

Unified Diff: tracing/tracing/extras/chrome/cc/layer_impl.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/cc/layer_impl.html
diff --git a/tracing/tracing/extras/chrome/cc/layer_impl.html b/tracing/tracing/extras/chrome/cc/layer_impl.html
index 233323951e9003ad1271e95b3375059e47d2938d..7afd06e7db0c395a6598bd349020a8fe6b9d5a48 100644
--- a/tracing/tracing/extras/chrome/cc/layer_impl.html
+++ b/tracing/tracing/extras/chrome/cc/layer_impl.html
@@ -5,7 +5,7 @@ Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->
-<link rel="import" href="/tracing/base/rect.html">
+<link rel="import" href="/tracing/base/math/rect.html">
<link rel="import" href="/tracing/extras/chrome/cc/constants.html">
<link rel="import" href="/tracing/extras/chrome/cc/region.html">
<link rel="import" href="/tracing/extras/chrome/cc/tile_coverage_rect.html">
@@ -54,13 +54,13 @@ tr.exportTo('tr.e.cc', function() {
this.gpuMemoryUsageInBytes = this.args.gpuMemoryUsage;
// Leave bounds in both places.
- this.bounds = tr.b.Rect.fromXYWH(
+ this.bounds = tr.b.math.Rect.fromXYWH(
0, 0,
this.args.bounds.width, this.args.bounds.height);
if (this.args.animationBounds) {
// AnimationBounds[2] and [5] are the Z-component of the box.
- this.animationBoundsRect = tr.b.Rect.fromXYWH(
+ this.animationBoundsRect = tr.b.math.Rect.fromXYWH(
this.args.animationBounds[0], this.args.animationBounds[1],
this.args.animationBounds[3], this.args.animationBounds[4]);
}
« no previous file with comments | « tracing/tracing/extras/android/android_auditor.html ('k') | tracing/tracing/extras/chrome/cc/layer_tree_host_impl.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698