| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <!-- | 2 <!-- |
| 3 Copyright (c) 2015 The Chromium Authors. All rights reserved. | 3 Copyright (c) 2015 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/debug_colors.html"> | 9 <link rel="import" href="/tracing/extras/chrome/cc/debug_colors.html"> |
| 10 <link rel="import" href="/tracing/extras/chrome/cc/util.html"> | 10 <link rel="import" href="/tracing/extras/chrome/cc/util.html"> |
| 11 <link rel="import" href="/tracing/model/object_instance.html"> | 11 <link rel="import" href="/tracing/model/object_instance.html"> |
| 12 | 12 |
| 13 <script> | 13 <script> |
| 14 'use strict'; | 14 'use strict'; |
| 15 | 15 |
| 16 tr.exportTo('tr.e.cc', function() { | 16 tr.exportTo('tr.e.cc', function() { |
| 17 var ObjectSnapshot = tr.model.ObjectSnapshot; | 17 var ObjectSnapshot = tr.model.ObjectSnapshot; |
| 18 | 18 |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 } | 79 } |
| 80 }; | 80 }; |
| 81 | 81 |
| 82 ObjectSnapshot.subTypes.register(TileSnapshot, {typeName: 'cc::Tile'}); | 82 ObjectSnapshot.subTypes.register(TileSnapshot, {typeName: 'cc::Tile'}); |
| 83 | 83 |
| 84 return { | 84 return { |
| 85 TileSnapshot, | 85 TileSnapshot, |
| 86 }; | 86 }; |
| 87 }); | 87 }); |
| 88 </script> | 88 </script> |
| OLD | NEW |