OLD | NEW |
1 <!DOCTYPE HTML> | 1 <!DOCTYPE HTML> |
2 <html> | 2 <html> |
3 <!-- | 3 <!-- |
4 Copyright (c) 2010 The Chromium Authors. All rights reserved. | 4 Copyright (c) 2010 The Chromium Authors. All rights reserved. |
5 Use of this source code is governed by a BSD-style license that can be | 5 Use of this source code is governed by a BSD-style license that can be |
6 found in the LICENSE file. | 6 found in the LICENSE file. |
7 --> | 7 --> |
8 <head i18n-values="dir:textdirection;"> | 8 <head i18n-values="dir:textdirection;"> |
9 <link rel="stylesheet" href="webui.css"> | 9 <link rel="stylesheet" href="webui.css"> |
10 <style> | 10 <style> |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
58 <script src="gpu_internals/sorted_array_utils.js"></script> | 58 <script src="gpu_internals/sorted_array_utils.js"></script> |
59 <script src="gpu_internals/timeline.js"></script> | 59 <script src="gpu_internals/timeline.js"></script> |
60 <script src="gpu_internals/timeline_track.js"></script> | 60 <script src="gpu_internals/timeline_track.js"></script> |
61 <script src="gpu_internals/fast_rect_renderer.js"></script> | 61 <script src="gpu_internals/fast_rect_renderer.js"></script> |
62 <script src="gpu_internals/profiling_view.js"></script> | 62 <script src="gpu_internals/profiling_view.js"></script> |
63 <script src="gpu_internals/timeline_view.js"></script> | 63 <script src="gpu_internals/timeline_view.js"></script> |
64 | 64 |
65 <script> | 65 <script> |
66 var browserBridge; | 66 var browserBridge; |
67 var tracingController; | 67 var tracingController; |
68 var timelineView; // made global for debugging purposes only | |
69 var profilingView; // made global for debugging purposes only | 68 var profilingView; // made global for debugging purposes only |
70 | 69 |
71 /** | 70 /** |
72 * Main entry point. called once the page has loaded. | 71 * Main entry point. called once the page has loaded. |
73 */ | 72 */ |
74 function onLoad() { | 73 function onLoad() { |
75 browserBridge = new gpu.BrowserBridge(); | 74 browserBridge = new gpu.BrowserBridge(); |
76 tracingController = new gpu.TracingController(); | 75 tracingController = new gpu.TracingController(); |
77 | 76 |
78 // Create the views. | 77 // Create the views. |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
117 <tab>GPU Info</tab> | 116 <tab>GPU Info</tab> |
118 <tab>Profiling</tab> | 117 <tab>Profiling</tab> |
119 </tabs> | 118 </tabs> |
120 <tabpanels> | 119 <tabpanels> |
121 <include src="gpu_internals/info_view.html"> | 120 <include src="gpu_internals/info_view.html"> |
122 <tabpanel id="profiling-view"</div> | 121 <tabpanel id="profiling-view"</div> |
123 </tabpanels> | 122 </tabpanels> |
124 </div> | 123 </div> |
125 </body> | 124 </body> |
126 </html> | 125 </html> |
OLD | NEW |