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

Side by Side Diff: chrome/browser/resources/gpu_internals/info_view.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
(Empty)
1 <!--
2 Copyright (c) 2010 The Chromium Authors. All rights reserved.
3 Use of this source code is governed by a BSD-style license that can be
4 found in the LICENSE file.
5 -->
6 <tabpanel id="info-view">
7 <div>
8 <h3>Graphics Feature Status</h3>
9 <ul class="feature-status-list">
10 </ul>
11 </div>
12 <div class='problems-div'>
13 <h3>Problems Detected</h3>
14 <ul class="problems-list">
15 </ul>
16 </div>
17
18 <div>
19 <h3>Version Information</h3>
20 <div id="client-info"></div>
21 </div>
22
23 <div>
24 <h3>Driver Information</h3>
25 <div id="basic-info"></div>
26 </div>
27
28 <div class="diagnostics">
29 <h3>Diagnostics</h3>
30 <div class="diagnostics-loading">... loading ...</div>
31 <div id="diagnostics-table">None</div>
32 </div>
33
34 <div id="log-messages" jsdisplay="values.length">
35 <h3>Log Messages</h3>
36 <ul>
37 <li jsselect="values">
38 <span jscontent="header"></span>: <span jscontent="message"></span>
39 </li>
40 </ul>
41 </div>
42
43 <!-- templates -->
44 <div style="display:none">
45 <div id="info-view-table-template">
46 <table id="info-view-table">
47 <tr jsselect="value">
48 <td jsdisplay="!(value instanceof Array)">
49 <span class="row-title" jscontent="description">title</span>
50 </td>
51 <td jsdisplay="!(value instanceof Array)">
52 <span jscontent="value">value</span>
53 </td>
54 <td jsdisplay="value instanceof Array" colspan=2>
55 <span jscontent="description" class="row-title"></span>
56 <div transclude="info-view-table-template"></div>
57 </td>
58 </tr>
59 </table>
60 </div>
61 </div>
62 </tabpanel>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698