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

Side by Side Diff: content/browser/resources/gpu/info_view.html

Issue 1637423004: Show Compositor information in chrome://gpu (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: has -> have Created 4 years, 10 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 <!-- 1 <!--
2 Copyright (c) 2012 The Chromium Authors. All rights reserved. 2 Copyright (c) 2012 The Chromium Authors. All rights reserved.
3 Use of this source code is governed by a BSD-style license that can be 3 Use of this source code is governed by a BSD-style license that can be
4 found in the LICENSE file. 4 found in the LICENSE file.
5 --> 5 -->
6 <tabpanel id="info-view"> 6 <tabpanel id="info-view">
7 <div> 7 <div>
8 <h3>Graphics Feature Status</h3> 8 <h3>Graphics Feature Status</h3>
9 <ul class="feature-status-list"> 9 <ul class="feature-status-list">
10 </ul> 10 </ul>
11 </div> 11 </div>
12 12
13 <div class='workarounds-div'> 13 <div class='workarounds-div'>
14 <h3>Driver Bug Workarounds</h3> 14 <h3>Driver Bug Workarounds</h3>
15 <ul class="workarounds-list"> 15 <ul class="workarounds-list">
16 </ul> 16 </ul>
17 </div> 17 </div>
18 18
19 <div class='problems-div'> 19 <div class='problems-div'>
20 <h3>Problems Detected</h3> 20 <h3>Problems Detected</h3>
21 <ul class="problems-list"> 21 <ul class="problems-list">
22 </ul> 22 </ul>
23 </div> 23 </div>
24 24
25 <div> 25 <div>
26 <h3>GpuMemoryBuffer Status</h3>
27 <div id="gpu-memory-buffer-info"></div>
28 </div>
29
30 <div>
31 <h3>Version Information</h3> 26 <h3>Version Information</h3>
32 <div id="client-info"></div> 27 <div id="client-info"></div>
33 </div> 28 </div>
34 29
35 <div> 30 <div>
36 <h3>Driver Information</h3> 31 <h3>Driver Information</h3>
37 <div id="basic-info"></div> 32 <div id="basic-info"></div>
38 </div> 33 </div>
39 34
35 <div>
36 <h3>Compositor Information</h3>
37 <div id="compositor-info"></div>
38 </div>
39
40 <div>
41 <h3>GpuMemoryBuffers Status</h3>
42 <div id="gpu-memory-buffer-info"></div>
43 </div>
44
40 <div class="diagnostics"> 45 <div class="diagnostics">
41 <h3>Diagnostics</h3> 46 <h3>Diagnostics</h3>
42 <div class="diagnostics-loading">... loading ...</div> 47 <div class="diagnostics-loading">... loading ...</div>
43 <div id="diagnostics-table">None</div> 48 <div id="diagnostics-table">None</div>
44 </div> 49 </div>
45 50
46 <div id="log-messages" jsdisplay="values.length"> 51 <div id="log-messages" jsdisplay="values.length">
47 <h3>Log Messages</h3> 52 <h3>Log Messages</h3>
48 <ul> 53 <ul>
49 <li jsselect="values"> 54 <li jsselect="values">
(...skipping 19 matching lines...) Expand all
69 </td> 74 </td>
70 <td jsdisplay="value instanceof Array" colspan=2> 75 <td jsdisplay="value instanceof Array" colspan=2>
71 <span jscontent="description" class="row-title"></span> 76 <span jscontent="description" class="row-title"></span>
72 <div transclude="info-view-table-template"></div> 77 <div transclude="info-view-table-template"></div>
73 </td> 78 </td>
74 </tr> 79 </tr>
75 </table> 80 </table>
76 </div> 81 </div>
77 </div> 82 </div>
78 </tabpanel> 83 </tabpanel>
OLDNEW
« no previous file with comments | « content/browser/resources/gpu/browser_bridge.js ('k') | content/browser/resources/gpu/info_view.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698