Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(582)

Side by Side Diff: chrome/browser/resources/chromeos/drive_internals.html

Issue 59083013: Add 'Clear local data and reload' button in chrome:drive-internals. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address comments (#2). Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/browser/resources/chromeos/drive_internals.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
39 </button>
40 <span id='reload-status-text'></span>
41 </div>
36 <ul> 42 <ul>
37 <li>Local Changestamp: 43 <li>Local Changestamp:
38 <span id='account-largest-changestamp-local'></span> 44 <span id='account-largest-changestamp-local'></span>
39 </li> 45 </li>
40 <li>Local Free Space: 46 <li>Local Free Space:
41 <span id='local-storage-freespace'></span> MB 47 <span id='local-storage-freespace'></span> MB
42 </li> 48 </li>
43 </ul> 49 </ul>
44 50
45 <h2 id='delta-update-status-section'>Delta Update Status</h2> 51 <h2 id='delta-update-status-section'>Delta Update Status</h2>
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 <th>Support Create</th> 128 <th>Support Create</th>
123 </tr> 129 </tr>
124 </tbody> 130 </tbody>
125 </table> 131 </table>
126 132
127 <h2 id='event-log-section'>Event Log</h2> 133 <h2 id='event-log-section'>Event Log</h2>
128 <ul id='event-log'> 134 <ul id='event-log'>
129 </ul> 135 </ul>
130 </body> 136 </body>
131 </html> 137 </html>
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/chromeos/drive_internals.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698