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

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

Issue 1375663002: Show GpuMemoryBuffer feature in chrome://gpu (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: WIP on reveman comments in #9 Created 5 years, 2 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>
14 <h3>GpuMemoryBuffer implementation</h3>
15 <ul class="gmb-implementation-list">
16 </ul>
17 </div>
18
13 <div class='workarounds-div'> 19 <div class='workarounds-div'>
14 <h3>Driver Bug Workarounds</h3> 20 <h3>Driver Bug Workarounds</h3>
15 <ul class="workarounds-list"> 21 <ul class="workarounds-list">
16 </ul> 22 </ul>
17 </div> 23 </div>
18 24
19 <div class='problems-div'> 25 <div class='problems-div'>
20 <h3>Problems Detected</h3> 26 <h3>Problems Detected</h3>
21 <ul class="problems-list"> 27 <ul class="problems-list">
22 </ul> 28 </ul>
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 </td> 70 </td>
65 <td jsdisplay="value instanceof Array" colspan=2> 71 <td jsdisplay="value instanceof Array" colspan=2>
66 <span jscontent="description" class="row-title"></span> 72 <span jscontent="description" class="row-title"></span>
67 <div transclude="info-view-table-template"></div> 73 <div transclude="info-view-table-template"></div>
68 </td> 74 </td>
69 </tr> 75 </tr>
70 </table> 76 </table>
71 </div> 77 </div>
72 </div> 78 </div>
73 </tabpanel> 79 </tabpanel>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698