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

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

Issue 1018463002: Deprecate WinSAT support in Chromium. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix gpu_unittests Created 5 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
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>Version Information</h3> 26 <h3>Version Information</h3>
27 <div id="client-info"></div> 27 <div id="client-info"></div>
28 </div> 28 </div>
29 29
30 <div class="performance-div">
31 <h3>Performance Information</h3>
32 <div id="performance-info"></div>
33 </div>
34
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
40 <div class="diagnostics"> 35 <div class="diagnostics">
41 <h3>Diagnostics</h3> 36 <h3>Diagnostics</h3>
42 <div class="diagnostics-loading">... loading ...</div> 37 <div class="diagnostics-loading">... loading ...</div>
43 <div id="diagnostics-table">None</div> 38 <div id="diagnostics-table">None</div>
44 </div> 39 </div>
(...skipping 24 matching lines...) Expand all
69 </td> 64 </td>
70 <td jsdisplay="value instanceof Array" colspan=2> 65 <td jsdisplay="value instanceof Array" colspan=2>
71 <span jscontent="description" class="row-title"></span> 66 <span jscontent="description" class="row-title"></span>
72 <div transclude="info-view-table-template"></div> 67 <div transclude="info-view-table-template"></div>
73 </td> 68 </td>
74 </tr> 69 </tr>
75 </table> 70 </table>
76 </div> 71 </div>
77 </div> 72 </div>
78 </tabpanel> 73 </tabpanel>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698