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

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

Issue 9706037: Display crash report IDs in about:gpu (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 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 | Annotate | Revision Log
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>
(...skipping 18 matching lines...) Expand all
29 <h3>Driver Information</h3> 29 <h3>Driver Information</h3>
30 <div id="basic-info"></div> 30 <div id="basic-info"></div>
31 </div> 31 </div>
32 32
33 <div class="diagnostics"> 33 <div class="diagnostics">
34 <h3>Diagnostics</h3> 34 <h3>Diagnostics</h3>
35 <div class="diagnostics-loading">... loading ...</div> 35 <div class="diagnostics-loading">... loading ...</div>
36 <div id="diagnostics-table">None</div> 36 <div id="diagnostics-table">None</div>
37 </div> 37 </div>
38 38
39 <div id="crash-list" jsdisplay="values.length">
40 <h3>Crash List</h3>
41 <ul>
42 <li jsselect="values">
43 <span jscontent="id"></span>: <span jscontent="time"></span>
44 </li>
45 </ul>
46 </div>
47
39 <div id="log-messages" jsdisplay="values.length"> 48 <div id="log-messages" jsdisplay="values.length">
40 <h3>Log Messages</h3> 49 <h3>Log Messages</h3>
41 <ul> 50 <ul>
42 <li jsselect="values"> 51 <li jsselect="values">
43 <span jscontent="header"></span>: <span jscontent="message"></span> 52 <span jscontent="header"></span>: <span jscontent="message"></span>
44 </li> 53 </li>
45 </ul> 54 </ul>
46 </div> 55 </div>
47 56
48 <!-- templates --> 57 <!-- templates -->
49 <div style="display:none"> 58 <div style="display:none">
50 <div id="info-view-table-template"> 59 <div id="info-view-table-template">
51 <table id="info-view-table"> 60 <table id="info-view-table">
52 <tr jsselect="value"> 61 <tr jsselect="value">
53 <td jsdisplay="!(value instanceof Array)"> 62 <td jsdisplay="!(value instanceof Array)">
54 <span class="row-title" jscontent="description">title</span> 63 <span class="row-title" jscontent="description">title</span>
55 </td> 64 </td>
56 <td jsdisplay="!(value instanceof Array)"> 65 <td jsdisplay="!(value instanceof Array)">
57 <span jscontent="value">value</span> 66 <span jscontent="value">value</span>
58 </td> 67 </td>
59 <td jsdisplay="value instanceof Array" colspan=2> 68 <td jsdisplay="value instanceof Array" colspan=2>
60 <span jscontent="description" class="row-title"></span> 69 <span jscontent="description" class="row-title"></span>
61 <div transclude="info-view-table-template"></div> 70 <div transclude="info-view-table-template"></div>
62 </td> 71 </td>
63 </tr> 72 </tr>
64 </table> 73 </table>
65 </div> 74 </div>
66 </div> 75 </div>
67 </tabpanel> 76 </tabpanel>
OLDNEW
« no previous file with comments | « chrome/browser/resources/gpu_internals/browser_bridge.js ('k') | chrome/browser/resources/gpu_internals/info_view.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698