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

Side by Side Diff: chrome/browser/resources/quota_internals/index.html

Issue 7053009: Add chrome://quota-internals/ resources (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: remove test mode and mocks Created 9 years, 6 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 <!DOCTYPE html>
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
11 <script src="chrome://resources/js/util.js"></script>
12 <script src="chrome://resources/js/cr.js"></script>
13 <script src="chrome://resources/js/cr/event_target.js"></script>
14 <script src="chrome://resources/js/i18n_template.js"></script>
15
16 <link rel="stylesheet" href="chrome://resources/css/tabs.css">
17 <link rel="stylesheet" href="chrome://resources/css/tree.css">
18 <script src="chrome://resources/js/cr/ui.js"></script>
19 <script src="chrome://resources/js/cr/ui/tabs.js"></script>
20 <script src="chrome://resources/js/cr/ui/tree.js"></script>
21 <script src="chrome://resources/css/tree.css.js"></script>
22 <script src="chrome://resources/js/cr/ui/focus_outline_manager.js"></script>
23
24 <script src="quota-internals.js"></script>
25 <script src="event_handler.js"></script>
26
27 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
28
29 <tabbox>
30 <tabs>
31 <tab>Summary</tab>
32 <tab>Usage &amp; Quota</tab>
33 <tab>Data</tab>
34 </tabs>
35 <tabpanels>
36 <tabpanel>
37 <!-- Summary -->
38 <h2>Summary</h2>
39 <table>
40 <tbody>
41 <tr>
42 <td>Free disk space for the profile directory.</td>
43 <td id="diskspace-entry">
44 <span i18n-content="text-not_available">N/A</span>
45 </td>
46 </tr>
47 </tbody>
48 </table>
49 <h2>Misc Statistics</h2>
50 <table>
51 <tbody id="stat-entries" class="entries"></tbody>
52 </table>
53 </tabpanel>
54
55 <tabpanel>
56 <!-- Usage and Quota -->
57 <h2>Usage and Quota Database Browser</h2>
58 <div id="tree-view-container">
59 <button id="refresh-button">Refresh</button>
60 <tree id="tree-view"></tree>
61 </div>
62 <table>
63 <thead></thead>
64 <tbody id="tree-item-description"></tbody>
65 </table>
66 </tabpanel>
67
68 <tabpanel>
69 <!-- Data -->
70 <button id="dump-button">Dump</button>
71 <pre id="dump-field"></pre>
72 </tabpanel>
73 </tabpanels>
74 </tabbox>
75
76 </body>
77 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698