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

Unified Diff: tracing/tracing/extras/chrome/cc/region.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
« no previous file with comments | « tracing/tracing/extras/chrome/cc/picture.html ('k') | tracing/tracing/extras/chrome/cc/render_pass.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tracing/tracing/extras/chrome/cc/region.html
diff --git a/tracing/tracing/extras/chrome/cc/region.html b/tracing/tracing/extras/chrome/cc/region.html
index ff53d56a6a0431c0e7b14ccce9b2591ea17e7085..e9b986c90eeb0c216bb289fc33d5e5e771d99a67 100644
--- a/tracing/tracing/extras/chrome/cc/region.html
+++ b/tracing/tracing/extras/chrome/cc/region.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">
<script>
'use strict';
@@ -23,7 +23,7 @@ tr.exportTo('tr.e.cc', function() {
var r = new Region();
for (var i = 0; i < array.length; i += 4) {
- r.rects.push(tr.b.Rect.fromXYWH(array[i], array[i + 1],
+ r.rects.push(tr.b.math.Rect.fromXYWH(array[i], array[i + 1],
array[i + 2], array[i + 3]));
}
return r;
« no previous file with comments | « tracing/tracing/extras/chrome/cc/picture.html ('k') | tracing/tracing/extras/chrome/cc/render_pass.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698