Index: chrome/browser/resources/gpu_internals.html |
diff --git a/chrome/browser/resources/gpu_internals.html b/chrome/browser/resources/gpu_internals.html |
index dbfc30812b5240d0cc6a3171c679ef71e203288c..51e76f62378939d54be9879efa99b09ec6df6bb1 100644 |
--- a/chrome/browser/resources/gpu_internals.html |
+++ b/chrome/browser/resources/gpu_internals.html |
@@ -40,11 +40,6 @@ tabbox tabpanels { |
</style> |
<link rel="stylesheet" href="gpu_internals/info_view.css"> |
-<link rel="stylesheet" href="gpu_internals/overlay.css"> |
-<link rel="stylesheet" href="gpu_internals/profiling_view.css"> |
-<link rel="stylesheet" href="gpu_internals/timeline_view.css"> |
-<link rel="stylesheet" href="gpu_internals/timeline.css"> |
-<link rel="stylesheet" href="gpu_internals/tracing_controller.css"> |
<link rel="stylesheet" href="chrome://resources/css/tabs.css"> |
<script src="chrome://resources/js/cr.js"></script> |
<script src="chrome://resources/js/cr/event_target.js"></script> |
@@ -58,16 +53,63 @@ tabbox tabpanels { |
<body> |
<div id="debug-div"> |
</div> |
- <!-- Tabs --> |
- <tabbox id="main-tabs"> |
- <tabs> |
- <tab>GPU Info</tab> |
- <tab>Profiling</tab> |
- </tabs> |
- <tabpanels> |
- <include src="gpu_internals/info_view.html"> |
nduca
2011/08/04 00:50:48
I'd prefer we leave the tabs as is, including leav
dominich
2011/08/04 16:55:28
Done.
|
- <tabpanel id="profiling-view"</div> |
- </tabpanels> |
+ <h1>GPU Information</h1> |
+ <div id="info-view"> |
+ <div> |
+ <h3>Graphics Feature Status</h3> |
+ <ul class="feature-status-list"> |
+ </ul> |
+ </div> |
+ <div class='problems-div'> |
+ <h3>Problems Detected</h3> |
+ <ul class="problems-list"> |
+ </ul> |
+ </div> |
+ |
+ <div> |
+ <h3>Version Information</h3> |
+ <div id="client-info"></div> |
+ </div> |
+ |
+ <div> |
+ <h3>Driver Information</h3> |
+ <div id="basic-info"></div> |
+ </div> |
+ |
+ <div class="diagnostics"> |
+ <h3>Diagnostics</h3> |
+ <div class="diagnostics-loading">... loading ...</div> |
+ <div id="diagnostics-table">None</div> |
+ </div> |
+ |
+ <div id="log-messages" jsdisplay="values.length"> |
+ <h3>Log Messages</h3> |
+ <ul> |
+ <li jsselect="values"> |
+ <span jscontent="header"></span>: <span jscontent="message"></span> |
+ </li> |
+ </ul> |
+ </div> |
+ |
+ <!-- templates --> |
+ <div style="display:none"> |
+ <div id="info-view-table-template"> |
+ <table id="info-view-table"> |
+ <tr jsselect="value"> |
+ <td jsdisplay="!(value instanceof Array)"> |
+ <span class="row-title" jscontent="description">title</span> |
+ </td> |
+ <td jsdisplay="!(value instanceof Array)"> |
+ <span jscontent="value">value</span> |
+ </td> |
+ <td jsdisplay="value instanceof Array" colspan=2> |
+ <span jscontent="description" class="row-title"></span> |
+ <div transclude="info-view-table-template"></div> |
+ </td> |
+ </tr> |
+ </table> |
+ </div> |
+ </div> |
</div> |
<script src="chrome://resources/js/i18n_template.js"></script> |
<script src="chrome://resources/js/i18n_process.js"></script> |