Chromium Code Reviews| 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> |
| 11 <h1>Drive Internals</h1> | 11 <h1>Drive Internals</h1> |
| 12 <div> | 12 <div> |
| 13 <a href="#auth-status-section">Authentication Status</a> | | 13 <a href="#auth-status-section">Authentication Status</a> | |
| 14 <a href="#gcache-contents-section">GCache Contents</a> | | 14 <a href="#gcache-contents-section">GCache Contents</a> | |
| 15 <a href="#file-system-contents-section">File System Contents</a> | | 15 <a href="#file-system-contents-section">File System Contents</a> | |
| 16 <a href="#cache-contents-section">Cache Contents</a> | 16 <a href="#cache-contents-section">Cache Contents</a> |
| 17 </div> | 17 </div> |
| 18 | 18 |
| 19 <h2 id='auth-status-contents-section'>Authentication Status</h2> | 19 <h2 id='auth-status-contents-section'>Authentication Status</h2> |
| 20 <ul> | 20 <ul> |
| 21 <li>Has refresh token: <span id='has-refresh-token'></span></li> | 21 <li>Has refresh token: <span id='has-refresh-token'></span></li> |
| 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='account-metadata-contents-section'>Account Metadata</h2> | 25 <h2 id='account-metadata-contents-section'>Account Metadata</h2> |
| 26 <ul> | 26 <ul> |
| 27 <li>Quota Information: <span id='account-quota-info'></span></li> | 27 <li>Quota Information: <span id='account-quota-info'></span></li> |
| 28 <li>Largetst Changestamp: | 28 <li>Largetst Changestamp (remote): |
|
Haruki Sato
2012/10/15 07:10:29
s/Largetst/Largest/
Seems like I had a typo here.
satorux1
2012/10/16 05:02:56
Done.
| |
| 29 <span id='account-largest-changestamp'></span> | 29 <span id='account-largest-changestamp-remote'></span> |
| 30 </li> | |
| 31 <li>Largetst Changestamp (local): | |
|
Haruki Sato
2012/10/15 07:10:29
ditto.
satorux1
2012/10/16 05:02:56
Done.
| |
| 32 <span id='account-largest-changestamp-local'></span> | |
| 30 </li> | 33 </li> |
| 31 </ul> | 34 </ul> |
| 32 <table> | 35 <table> |
| 33 <tbody id='account-installed-apps'> | 36 <tbody id='account-installed-apps'> |
| 34 <tr> | 37 <tr> |
| 35 <th>App Name</th> | 38 <th>App Name</th> |
| 36 <th>App ID</th> | 39 <th>App ID</th> |
| 37 <th>Object Type</th> | 40 <th>Object Type</th> |
| 38 <th>Support Create</th> | 41 <th>Support Create</th> |
| 39 </tr> | 42 </tr> |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 83 <th>Mounted</th> | 86 <th>Mounted</th> |
| 84 <th>Persistent</th> | 87 <th>Persistent</th> |
| 85 </tr> | 88 </tr> |
| 86 </tbody> | 89 </tbody> |
| 87 </table> | 90 </table> |
| 88 | 91 |
| 89 <h2 id='local-storage-usage-section'>Local Storage Usage</h2> | 92 <h2 id='local-storage-usage-section'>Local Storage Usage</h2> |
| 90 <div>Free space: <span id='local-storage-freespace'></span> MB</div> | 93 <div>Free space: <span id='local-storage-freespace'></span> MB</div> |
| 91 </body> | 94 </body> |
| 92 </html> | 95 </html> |
| OLD | NEW |