Remove the old signature of NotificationManager::closePersistent().
[chromium-blink-merge.git] / chrome / browser / resources / chromeos / drive_internals.html
blobfe4c9f24be606e39e404e82610f859004735fd0b
1 <!doctype html>
2 <html>
3 <head>
4 <title>drive-internals</title>
5 <meta charset="utf-8">
6 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css">
7 <link rel="stylesheet" href="drive_internals.css">
8 <script src="chrome://resources/js/util.js"></script>
9 <script src="chrome://drive-internals/drive_internals.js"></script>
10 </head>
11 <body>
12 <h1>Drive Internals</h1>
13 <ul id="toc"></ul>
15 <h2 id="connection-status-section">Connection Status</h2>
16 <ul>
17 <li>
18 Status: <span id="connection-status"></span>
19 </li>
20 <li>
21 Has refresh token: <span id="has-refresh-token"></span>
22 <button id="button-clear-refresh-token">clear</button>
23 </li>
24 <li>
25 Has access token: <span id="has-access-token"></span>
26 <button id="button-clear-access-token">clear</button>
27 </li>
28 </ul>
30 <h2 id="account-information-section">Account Information</h2>
31 <ul>
32 <li>Remote Changestamp:
33 <span id="account-largest-changestamp-remote"></span>
34 </li>
35 <li>Quota Information: <span id="account-quota-info"></span></li>
36 <li>Root Resource Id: <span id="root-resource-id"></span></li>
37 </ul>
39 <h2 id="local-metadata-section">Local Metadata</h2>
40 <div>
41 <button id="button-reset-drive-filesystem">
42 Clear local data
43 </button>
44 <span id="reset-status-text"></span>
45 </div>
46 <ul>
47 <li>Local Changestamp:
48 <span id="account-largest-changestamp-local"></span>
49 </li>
50 <li>Local Free Space:
51 <span id="local-storage-freespace"></span> MB
52 </li>
53 </ul>
55 <h2 id="delta-update-status-section">Delta Update Status</h2>
56 <ul>
57 <li>Push notification is enabled:
58 <span id="push-notification-enabled"></span></li>
59 <li>Last update check time:
60 <span id="last-update-check-time"></span></li>
61 <li>Last update check result:
62 <span id="last-update-check-error"></span></li>
63 </ul>
65 <h2 id="in-flight-operations-section">In-flight Operations</h2>
66 <table>
67 <tbody id="in-flight-operations-contents">
68 <tr>
69 <th>ID</th>
70 <th>Type</th>
71 <th>File Path</th>
72 <th>State</th>
73 <th>Progress</th>
74 </tr>
75 </tbody>
76 </table>
78 <h2 id="file-system-contents-section">File System Contents</h2>
79 <button id="button-show-file-entries">Show</button>
80 <div id="file-system-contents"></div>
82 <h2 id="path-configurations-section">Path Configurations</h2>
83 <ul id="path-configurations">
84 </ul>
86 <h2 id="gcache-contents-section">GCache Contents</h2>
87 <table>
88 <tbody id="gcache-contents">
89 <tr>
90 <th>Path</th>
91 <th>Size</th>
92 <th>Last Modified</th>
93 <th>Permission</th>
94 </tr>
95 </tbody>
96 </table>
98 <ul>
99 <li>
100 Total Size:
101 <span id="gcache-summary-total-size">(calculating...)</span> MB.
102 </li>
103 </ul>
105 <h2 id="cache-contents-section">Cache Contents</h2>
106 <table>
107 <tbody id="cache-contents">
108 <tr>
109 <th>Local ID</th>
110 <th>MD5</th>
111 <th>Present</th>
112 <th>Pinned</th>
113 <th>Dirty</th>
114 </tr>
115 </tbody>
116 </table>
118 <h2 id="drive-related-preferences-section">Drive related Preferences</h2>
119 <ul id="drive-related-preferences">
120 </ul>
122 <h2 id="app-list-section">Application List</h2>
123 <ul>
124 <li>ETag: <span id="app-list-etag"></span></li>
125 </ul>
126 <table>
127 <tbody id="app-list-items">
128 <tr>
129 <th>App Name</th>
130 <th>App ID</th>
131 <th>Object Type</th>
132 <th>Support Create</th>
133 </tr>
134 </tbody>
135 </table>
137 <h2 id="event-log-section">Event Log</h2>
138 <ul id="event-log">
139 </ul>
140 </body>
141 </html>