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> |
| (...skipping 15 matching lines...) Expand all Loading... | |
| 26 <h2 id='account-information-section'>Account Information</h2> | 26 <h2 id='account-information-section'>Account Information</h2> |
| 27 <ul> | 27 <ul> |
| 28 <li>Remote Changestamp: | 28 <li>Remote Changestamp: |
| 29 <span id='account-largest-changestamp-remote'></span> | 29 <span id='account-largest-changestamp-remote'></span> |
| 30 </li> | 30 </li> |
| 31 <li>Quota Information: <span id='account-quota-info'></span></li> | 31 <li>Quota Information: <span id='account-quota-info'></span></li> |
| 32 <li>Root Resource Id: <span id='root-resource-id'></span></li> | 32 <li>Root Resource Id: <span id='root-resource-id'></span></li> |
| 33 </ul> | 33 </ul> |
| 34 | 34 |
| 35 <h2 id='local-metadata-section'>Local Metadata</h2> | 35 <h2 id='local-metadata-section'>Local Metadata</h2> |
| 36 <div> | |
| 37 <button id='button-reload-drive-filesystem' | |
| 38 >Clear local data and reload</button> | |
|
satorux1
2013/11/06 07:34:27
line starting with > is unusual. maybe:
<button .
kinaba
2013/11/06 07:36:45
Indeed. done.
| |
| 39 <span id='reload-status-text'></span> | |
| 40 </div> | |
| 36 <ul> | 41 <ul> |
| 37 <li>Local Changestamp: | 42 <li>Local Changestamp: |
| 38 <span id='account-largest-changestamp-local'></span> | 43 <span id='account-largest-changestamp-local'></span> |
| 39 </li> | 44 </li> |
| 40 <li>Local Free Space: | 45 <li>Local Free Space: |
| 41 <span id='local-storage-freespace'></span> MB | 46 <span id='local-storage-freespace'></span> MB |
| 42 </li> | 47 </li> |
| 43 </ul> | 48 </ul> |
| 44 | 49 |
| 45 <h2 id='delta-update-status-section'>Delta Update Status</h2> | 50 <h2 id='delta-update-status-section'>Delta Update Status</h2> |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 122 <th>Support Create</th> | 127 <th>Support Create</th> |
| 123 </tr> | 128 </tr> |
| 124 </tbody> | 129 </tbody> |
| 125 </table> | 130 </table> |
| 126 | 131 |
| 127 <h2 id='event-log-section'>Event Log</h2> | 132 <h2 id='event-log-section'>Event Log</h2> |
| 128 <ul id='event-log'> | 133 <ul id='event-log'> |
| 129 </ul> | 134 </ul> |
| 130 </body> | 135 </body> |
| 131 </html> | 136 </html> |
| OLD | NEW |