| 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]);
|
| }
|
|
|