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

Side by Side Diff: tracing/tracing/extras/chrome/cc/render_pass.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 unified diff | Download patch
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <!-- 2 <!--
3 Copyright (c) 2013 The Chromium Authors. All rights reserved. 3 Copyright (c) 2013 The Chromium Authors. All rights reserved.
4 Use of this source code is governed by a BSD-style license that can be 4 Use of this source code is governed by a BSD-style license that can be
5 found in the LICENSE file. 5 found in the LICENSE file.
6 --> 6 -->
7 7
8 <link rel="import" href="/tracing/base/rect.html"> 8 <link rel="import" href="/tracing/base/math/rect.html">
9 <link rel="import" href="/tracing/extras/chrome/cc/util.html"> 9 <link rel="import" href="/tracing/extras/chrome/cc/util.html">
10 <link rel="import" href="/tracing/model/object_instance.html"> 10 <link rel="import" href="/tracing/model/object_instance.html">
11 11
12 <script> 12 <script>
13 'use strict'; 13 'use strict';
14 14
15 tr.exportTo('tr.e.cc', function() { 15 tr.exportTo('tr.e.cc', function() {
16 var ObjectSnapshot = tr.model.ObjectSnapshot; 16 var ObjectSnapshot = tr.model.ObjectSnapshot;
17 17
18 /** 18 /**
(...skipping 18 matching lines...) Expand all
37 37
38 ObjectSnapshot.subTypes.register( 38 ObjectSnapshot.subTypes.register(
39 RenderPassSnapshot, 39 RenderPassSnapshot,
40 {typeName: 'cc::RenderPass'}); 40 {typeName: 'cc::RenderPass'});
41 41
42 return { 42 return {
43 RenderPassSnapshot, 43 RenderPassSnapshot,
44 }; 44 };
45 }); 45 });
46 </script> 46 </script>
OLDNEW
« no previous file with comments | « tracing/tracing/extras/chrome/cc/region.html ('k') | tracing/tracing/extras/chrome/cc/tile.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698