| 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 29 matching lines...) Expand all Loading... |
| 40 <tbody id='account-installed-apps'> | 40 <tbody id='account-installed-apps'> |
| 41 <tr> | 41 <tr> |
| 42 <th>App Name</th> | 42 <th>App Name</th> |
| 43 <th>App ID</th> | 43 <th>App ID</th> |
| 44 <th>Object Type</th> | 44 <th>Object Type</th> |
| 45 <th>Support Create</th> | 45 <th>Support Create</th> |
| 46 </tr> | 46 </tr> |
| 47 </tbody> | 47 </tbody> |
| 48 </table> | 48 </table> |
| 49 | 49 |
| 50 <h2 id='delta-update-status-section'>Delta Update Status</h2> |
| 51 <ul> |
| 52 <li>Push notification is enabled: |
| 53 <span id='push-notification-enabled'></span></li> |
| 54 <li>Polling interval: |
| 55 <span id='polling-interval-sec'></span> seconds</li> |
| 56 <li>Last update check time: |
| 57 <span id='last-update-check-time'></span></li> |
| 58 <li>Last update check result: |
| 59 <span id='last-update-check-error'></span></li> |
| 60 </ul> |
| 61 |
| 50 <h2 id='in-flight-operations-section'>In-flight Operations</h2> | 62 <h2 id='in-flight-operations-section'>In-flight Operations</h2> |
| 51 <table> | 63 <table> |
| 52 <tbody id='in-flight-operations-contents'> | 64 <tbody id='in-flight-operations-contents'> |
| 53 <tr> | 65 <tr> |
| 54 <th>Operation ID</th> | 66 <th>Operation ID</th> |
| 55 <th>Operation Type</th> | 67 <th>Operation Type</th> |
| 56 <th>File Path</th> | 68 <th>File Path</th> |
| 57 <th>Transfer State</th> | 69 <th>Transfer State</th> |
| 58 <th>Start Time</th> | 70 <th>Start Time</th> |
| 59 <th>Progress</th> | 71 <th>Progress</th> |
| (...skipping 30 matching lines...) Expand all Loading... |
| 90 <th>Mounted</th> | 102 <th>Mounted</th> |
| 91 <th>Persistent</th> | 103 <th>Persistent</th> |
| 92 </tr> | 104 </tr> |
| 93 </tbody> | 105 </tbody> |
| 94 </table> | 106 </table> |
| 95 | 107 |
| 96 <h2 id='local-storage-usage-section'>Local Storage Usage</h2> | 108 <h2 id='local-storage-usage-section'>Local Storage Usage</h2> |
| 97 <div>Free space: <span id='local-storage-freespace'></span> MB</div> | 109 <div>Free space: <span id='local-storage-freespace'></span> MB</div> |
| 98 </body> | 110 </body> |
| 99 </html> | 111 </html> |
| OLD | NEW |