OLD | NEW |
1 <!DOCTYPE HTML> | 1 <!DOCTYPE HTML> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <title>drive-internals</title> | 4 <title>drive-internals</title> |
5 <meta charset="utf-8"> | 5 <meta charset="utf-8"> |
6 <link rel="stylesheet" href="drive_internals.css"> | 6 <link rel="stylesheet" href="drive_internals.css"> |
7 <script src="chrome://resources/js/util.js"></script> | 7 <script src="chrome://resources/js/util.js"></script> |
8 <script src="chrome://drive-internals/drive_internals.js"></script> | 8 <script src="chrome://drive-internals/drive_internals.js"></script> |
9 </head> | 9 </head> |
10 <body> | 10 <body> |
(...skipping 11 matching lines...) Expand all Loading... |
22 <li>Has access token: <span id='has-access-token'></span></li> | 22 <li>Has access token: <span id='has-access-token'></span></li> |
23 </ul> | 23 </ul> |
24 | 24 |
25 <h2 id='gcache-contents-section'>GCache Contents</h2> | 25 <h2 id='gcache-contents-section'>GCache Contents</h2> |
26 <table> | 26 <table> |
27 <tbody id='gcache-contents'> | 27 <tbody id='gcache-contents'> |
28 <tr><th>Path</th><th>Size</th><th>Last Modified</th></tr> | 28 <tr><th>Path</th><th>Size</th><th>Last Modified</th></tr> |
29 </tbody> | 29 </tbody> |
30 </table> | 30 </table> |
31 | 31 |
| 32 <ul> |
| 33 <li> |
| 34 Total Size: |
| 35 <span id='gcache-summary-total-size'>(calculating...)</span> bytes. |
| 36 </li> |
| 37 </ul> |
| 38 |
32 <h2 id='file-system-contents-section'>File System Contents</h2> | 39 <h2 id='file-system-contents-section'>File System Contents</h2> |
33 <div id='file-system-contents'></div> | 40 <div id='file-system-contents'></div> |
34 | 41 |
35 <h2 id='cache-contents-section'>Cache Contents</h2> | 42 <h2 id='cache-contents-section'>Cache Contents</h2> |
36 <table> | 43 <table> |
37 <tbody id='cache-contents'> | 44 <tbody id='cache-contents'> |
38 <tr> | 45 <tr> |
39 <th>Resource ID</th> | 46 <th>Resource ID</th> |
40 <th>MD5</th> | 47 <th>MD5</th> |
41 <th>Present</th> | 48 <th>Present</th> |
42 <th>Pinned</th> | 49 <th>Pinned</th> |
43 <th>Dirty</th> | 50 <th>Dirty</th> |
44 <th>Mounted</th> | 51 <th>Mounted</th> |
45 <th>Persistent</th> | 52 <th>Persistent</th> |
46 </tr> | 53 </tr> |
47 </tbody> | 54 </tbody> |
48 </table> | 55 </table> |
49 </body> | 56 </body> |
50 </html> | 57 </html> |
OLD | NEW |