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

Side by Side Diff: chrome/browser/resources/sync_file_system_internals/main.html

Issue 14084008: Boilerplate code to add chrome://syncfs-internals page for debugging. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase with similarity=20 Created 7 years, 7 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
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <!-- 2 <!--
3 Copyright (c) 2011 The Chromium Authors. All rights reserved. 3 Copyright 2013 The Chromium Authors. All rights reserved.
4 Use of this source code is governed by a BSD-style license that can be 4 Use of this source code is governed by a BSD-style license that can be
5 found in the LICENSE file. 5 found in the LICENSE file.
6 --> 6 -->
7 <html i18n-values="dir:textdirection;"> 7 <html i18n-values="dir:textdirection;">
8 <title>Quota Internals</title> 8 <title>Sync File System Internals</title>
9 <link rel="stylesheet" href="main.css"> 9 <link rel="stylesheet" href="main.css">
10 10
11 <script src="chrome://resources/js/util.js"></script> 11 <script src="chrome://resources/js/util.js"></script>
12 <script src="chrome://resources/js/cr.js"></script> 12 <script src="chrome://resources/js/cr.js"></script>
13 <script src="chrome://resources/js/cr/event_target.js"></script> 13 <script src="chrome://resources/js/cr/event_target.js"></script>
14 <script src="chrome://resources/js/i18n_template.js"></script> 14 <script src="chrome://resources/js/i18n_template.js"></script>
15 15
16 <link rel="stylesheet" href="chrome://resources/css/tabs.css"> 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> 17 <script src="chrome://resources/js/cr/ui.js"></script>
19 <script src="chrome://resources/js/cr/ui/tabs.js"></script> 18 <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> 19 <script src="chrome://resources/js/cr/ui/focus_outline_manager.js"></script>
23 20
24 <script src="chrome://quota-internals/message_dispatcher.js"></script>
25 <script src="chrome://quota-internals/event_handler.js"></script>
26
27 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> 21 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
28 22
29 <tabbox> 23 <tabbox>
30 <tabs> 24 <tabs>
31 <tab>Summary</tab> 25 <tab>Sync Service</tab>
32 <tab>Usage &amp; Quota</tab>
33 <tab>Data</tab>
34 </tabs> 26 </tabs>
35 <tabpanels> 27 <tabpanels>
28
36 <tabpanel> 29 <tabpanel>
37 <!-- Summary --> 30 <!-- Sync Service -->
38 <h2>Summary</h2> 31 <h2>Sync Service</h2>
39 <table>
40 <tbody>
41 <tr>
42 <td>Free disk space for the profile directory.</td>
43 <td id="diskspace-entry">N/A</td>
44 </tr>
45 </tbody>
46 </table>
47 <h2>Misc Statistics</h2>
48 <table>
49 <tbody id="stat-entries" class="entries"></tbody>
50 </table>
51 </tabpanel> 32 </tabpanel>
52 33
53 <tabpanel>
54 <!-- Usage and Quota -->
55 <h2>Usage and Quota Database Browser</h2>
56 <div id="tree-view-container">
57 <button id="refresh-button">Refresh</button>
58 <tree id="tree-view"></tree>
59 </div>
60 <table>
61 <thead></thead>
62 <tbody id="tree-item-description"></tbody>
63 </table>
64 </tabpanel>
65
66 <tabpanel>
67 <!-- Data -->
68 <button id="dump-button">Dump</button>
69 <pre id="dump-field"></pre>
70 </tabpanel>
71 </tabpanels> 34 </tabpanels>
72 </tabbox> 35 </tabbox>
73 36
74 </body> 37 </body>
75 </html> 38 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698