Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
|
Evan Stade
2011/06/04 02:43:17
it seems bad to have 2 almost identical files, alt
tzik
2011/06/06 10:57:44
Done.
| |
| 2 <!-- | |
| 3 Copyright (c) 2011 The Chromium Authors. All rights reserved. | |
| 4 Use of this source code is governed by a BSD-style license that can be | |
| 5 found in the LICENSE file. | |
| 6 --> | |
| 7 <html i18n-values="dir:textdirection;"> | |
| 8 <title>Quota Internals</title> | |
| 9 <link rel="stylesheet" href="quota-internals.css"/> | |
| 10 <script src="../shared/js/util.js"></script> | |
| 11 <script src="../shared/js/cr.js"></script> | |
| 12 <script src="../shared/js/cr/event_target.js"></script> | |
| 13 <script src="../shared/js/i18n_template.js"></script> | |
| 14 <script src="../shared/js/i18n_template.js"></script> | |
| 15 | |
| 16 <link rel="stylesheet" href="../shared/css/tabs.css"> | |
| 17 <link rel="stylesheet" href="../shared/css/tree.css"> | |
| 18 <script src="../shared/js/cr/ui.js"></script> | |
| 19 <script src="../shared/js/cr/ui/tabs.js"></script> | |
| 20 <script src="../shared/js/cr/ui/tree.js"></script> | |
| 21 <script src="../shared/css/tree.css.js"></script> | |
| 22 <script src="../shared/js/cr/ui/focus_outline_manager.js"></script> | |
| 23 | |
| 24 <script src="mock_chrome_message.js"></script> | |
| 25 <script src="mock_strings.js"></script> | |
| 26 | |
| 27 <script src="quota-internals.js"></script> | |
| 28 <script src="event_handler.js"></script> | |
| 29 | |
| 30 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> | |
| 31 | |
| 32 <tabbox id="tabboxes"> | |
| 33 <tabs> | |
| 34 <tab>Summary</tab> | |
| 35 <tab>Usage & Quota</tab> | |
| 36 <tab>Data</tab> | |
| 37 </tabs> | |
| 38 <tabpanels> | |
| 39 <tabpanel> | |
| 40 <!-- Summary --> | |
| 41 <h2>Summary</h2> | |
| 42 <table> | |
| 43 <tbody> | |
| 44 <tr> | |
| 45 <td>Free disk space for the profile directory.</td> | |
| 46 <td id="diskspace-entry"> | |
| 47 <span i18n-content="text-not_available">N/A</span> | |
| 48 </td> | |
| 49 </tr> | |
| 50 </tbody> | |
| 51 </table> | |
| 52 <h2>Misc Statistics</h2> | |
| 53 <table id="stats-table"> | |
| 54 <tbody id="stat-entries" class="entries"></tbody> | |
| 55 </table> | |
| 56 </tabpanel> | |
| 57 | |
| 58 <tabpanel> | |
| 59 <!-- Usage and Quota --> | |
| 60 <h2>Usage and Quota Database Browser</h2> | |
| 61 <div id="tree-view-container"> | |
| 62 <button id="refresh-button">Refresh</button> | |
| 63 <tree id="tree-view"></tree> | |
| 64 </div> | |
| 65 <table> | |
| 66 <thead></thead> | |
| 67 <tbody id="tree-item-description"></tbody> | |
| 68 </table> | |
| 69 </tabpanel> | |
| 70 | |
| 71 <tabpanel> | |
| 72 <!-- Data --> | |
| 73 <button id="dump-button">Dump</button> | |
| 74 <pre id="dump-field"></pre> | |
| 75 </tabpanel> | |
| 76 </tabpanels> | |
| 77 </tabbox> | |
| 78 | |
| 79 </body> | |
| 80 </html> | |
| OLD | NEW |