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

Side by Side Diff: chrome/browser/resources/gpu_internals.html

Issue 7555005: Moving the contents of chrome://gpu Profiling to chrome://tracing. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove tabs Created 9 years, 4 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 | Annotate | Revision Log
OLDNEW
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 <include src="content_security_policy.html"/> 9 <include src="content_security_policy.html"/>
10 10
(...skipping 22 matching lines...) Expand all
33 left: 50%; 33 left: 50%;
34 border: 1px solid red; 34 border: 1px solid red;
35 } 35 }
36 36
37 tabbox tabpanels { 37 tabbox tabpanels {
38 padding: 1px; 38 padding: 1px;
39 } 39 }
40 40
41 </style> 41 </style>
42 <link rel="stylesheet" href="gpu_internals/info_view.css"> 42 <link rel="stylesheet" href="gpu_internals/info_view.css">
43 <link rel="stylesheet" href="gpu_internals/overlay.css">
44 <link rel="stylesheet" href="gpu_internals/profiling_view.css">
45 <link rel="stylesheet" href="gpu_internals/timeline_view.css">
46 <link rel="stylesheet" href="gpu_internals/timeline.css">
47 <link rel="stylesheet" href="gpu_internals/tracing_controller.css">
48 <link rel="stylesheet" href="chrome://resources/css/tabs.css"> 43 <link rel="stylesheet" href="chrome://resources/css/tabs.css">
49 <script src="chrome://resources/js/cr.js"></script> 44 <script src="chrome://resources/js/cr.js"></script>
50 <script src="chrome://resources/js/cr/event_target.js"></script> 45 <script src="chrome://resources/js/cr/event_target.js"></script>
51 <script src="chrome://resources/js/cr/ui.js"></script> 46 <script src="chrome://resources/js/cr/ui.js"></script>
52 <script src="chrome://resources/js/cr/ui/focus_outline_manager.js"></script> 47 <script src="chrome://resources/js/cr/ui/focus_outline_manager.js"></script>
53 <script src="chrome://resources/js/cr/ui/tabs.js"></script> 48 <script src="chrome://resources/js/cr/ui/tabs.js"></script>
54 <script src="chrome://resources/js/util.js"></script> 49 <script src="chrome://resources/js/util.js"></script>
55 <script src="chrome://gpu-internals/gpu_internals.js"></script> 50 <script src="chrome://gpu-internals/gpu_internals.js"></script>
56 <script src="chrome://gpu-internals/strings.js"></script> 51 <script src="chrome://gpu-internals/strings.js"></script>
57 </head> 52 </head>
58 <body> 53 <body>
59 <div id="debug-div"> 54 <div id="debug-div">
60 </div> 55 </div>
61 <!-- Tabs --> 56 <h1>GPU Information</h1>
62 <tabbox id="main-tabs"> 57 <div id="info-view">
63 <tabs> 58 <div>
64 <tab>GPU Info</tab> 59 <h3>Graphics Feature Status</h3>
65 <tab>Profiling</tab> 60 <ul class="feature-status-list">
66 </tabs> 61 </ul>
67 <tabpanels> 62 </div>
68 <include src="gpu_internals/info_view.html"> 63 <div class='problems-div'>
nduca 2011/08/04 00:50:48 I'd prefer we leave the tabs as is, including leav
dominich 2011/08/04 16:55:28 Done.
69 <tabpanel id="profiling-view"</div> 64 <h3>Problems Detected</h3>
70 </tabpanels> 65 <ul class="problems-list">
66 </ul>
67 </div>
68
69 <div>
70 <h3>Version Information</h3>
71 <div id="client-info"></div>
72 </div>
73
74 <div>
75 <h3>Driver Information</h3>
76 <div id="basic-info"></div>
77 </div>
78
79 <div class="diagnostics">
80 <h3>Diagnostics</h3>
81 <div class="diagnostics-loading">... loading ...</div>
82 <div id="diagnostics-table">None</div>
83 </div>
84
85 <div id="log-messages" jsdisplay="values.length">
86 <h3>Log Messages</h3>
87 <ul>
88 <li jsselect="values">
89 <span jscontent="header"></span>: <span jscontent="message"></span>
90 </li>
91 </ul>
92 </div>
93
94 <!-- templates -->
95 <div style="display:none">
96 <div id="info-view-table-template">
97 <table id="info-view-table">
98 <tr jsselect="value">
99 <td jsdisplay="!(value instanceof Array)">
100 <span class="row-title" jscontent="description">title</span>
101 </td>
102 <td jsdisplay="!(value instanceof Array)">
103 <span jscontent="value">value</span>
104 </td>
105 <td jsdisplay="value instanceof Array" colspan=2>
106 <span jscontent="description" class="row-title"></span>
107 <div transclude="info-view-table-template"></div>
108 </td>
109 </tr>
110 </table>
111 </div>
112 </div>
71 </div> 113 </div>
72 <script src="chrome://resources/js/i18n_template.js"></script> 114 <script src="chrome://resources/js/i18n_template.js"></script>
73 <script src="chrome://resources/js/i18n_process.js"></script> 115 <script src="chrome://resources/js/i18n_process.js"></script>
74 <script src="chrome://resources/js/jstemplate_compiled.js"></script> 116 <script src="chrome://resources/js/jstemplate_compiled.js"></script>
75 </body> 117 </body>
76 </html> 118 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698