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

Unified Diff: tracing/tracing/extras/chrome/cc/util_test.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/util.html ('k') | tracing/tracing/extras/chrome/chrome_auditor.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tracing/tracing/extras/chrome/cc/util_test.html
diff --git a/tracing/tracing/extras/chrome/cc/util_test.html b/tracing/tracing/extras/chrome/cc/util_test.html
index ed9ff691ceced394abb58570f45bcbfe3d30d569..ff620aea511c8637417f7bdb09292a55a0b92eec 100644
--- a/tracing/tracing/extras/chrome/cc/util_test.html
+++ b/tracing/tracing/extras/chrome/cc/util_test.html
@@ -5,8 +5,8 @@ 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/quad.html">
-<link rel="import" href="/tracing/base/rect.html">
+<link rel="import" href="/tracing/base/math/quad.html">
+<link rel="import" href="/tracing/base/math/rect.html">
<link rel="import" href="/tracing/extras/chrome/cc/util.html">
<script>
@@ -70,7 +70,7 @@ tr.b.unittest.testSuite(function() {
}
};
tr.e.cc.preInitializeObject(object);
- assert.instanceOf(object.args.someQuad, tr.b.Quad);
+ assert.instanceOf(object.args.someQuad, tr.b.math.Quad);
});
test('quadConversionNested', function() {
@@ -83,8 +83,8 @@ tr.b.unittest.testSuite(function() {
}
};
tr.e.cc.preInitializeObject(object);
- assert.instanceOf(object.args.nestedField.aQuad, tr.b.Quad);
- assert.instanceOf(object.args.nonNestedQuad, tr.b.Quad);
+ assert.instanceOf(object.args.nestedField.aQuad, tr.b.math.Quad);
+ assert.instanceOf(object.args.nonNestedQuad, tr.b.math.Quad);
});
test('rectCoversion', function() {
@@ -94,7 +94,7 @@ tr.b.unittest.testSuite(function() {
}
};
tr.e.cc.preInitializeObject(object);
- assert.instanceOf(object.args.someRect, tr.b.Rect);
+ assert.instanceOf(object.args.someRect, tr.b.math.Rect);
});
test('rectCoversionNested', function() {
@@ -107,8 +107,8 @@ tr.b.unittest.testSuite(function() {
}
};
tr.e.cc.preInitializeObject(object);
- assert.instanceOf(object.args.nestedField.aRect, tr.b.Rect);
- assert.instanceOf(object.args.nonNestedRect, tr.b.Rect);
+ assert.instanceOf(object.args.nestedField.aRect, tr.b.math.Rect);
+ assert.instanceOf(object.args.nonNestedRect, tr.b.math.Rect);
});
});
</script>
« no previous file with comments | « tracing/tracing/extras/chrome/cc/util.html ('k') | tracing/tracing/extras/chrome/chrome_auditor.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698