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

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

Issue 10828422: drive: Add information about in-flight operations to chrome:drive-internals (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: rebase, add const Created 8 years, 3 months 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
« 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>
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='in-flight-operations-section'>In-flight Operations</h2>
26 <table>
27 <tbody id='in-flight-operations-contents'>
28 <tr>
29 <th>Operation ID</th>
30 <th>Operation Type</th>
31 <th>File Path</th>
32 <th>Transfer State</th>
33 <th>Start Time</th>
34 <th>Progress</th>
35 </tr>
36 </tbody>
37 </table>
38
25 <h2 id='gcache-contents-section'>GCache Contents</h2> 39 <h2 id='gcache-contents-section'>GCache Contents</h2>
26 <table> 40 <table>
27 <tbody id='gcache-contents'> 41 <tbody id='gcache-contents'>
28 <tr><th>Path</th><th>Size</th><th>Last Modified</th></tr> 42 <tr><th>Path</th><th>Size</th><th>Last Modified</th></tr>
29 </tbody> 43 </tbody>
30 </table> 44 </table>
31 45
32 <ul> 46 <ul>
33 <li> 47 <li>
34 Total Size: 48 Total Size:
(...skipping 16 matching lines...) Expand all
51 <th>Mounted</th> 65 <th>Mounted</th>
52 <th>Persistent</th> 66 <th>Persistent</th>
53 </tr> 67 </tr>
54 </tbody> 68 </tbody>
55 </table> 69 </table>
56 70
57 <h2 id='local-storage-usage-section'>Local Storage Usage</h2> 71 <h2 id='local-storage-usage-section'>Local Storage Usage</h2>
58 <div>Free space: <span id='local-storage-freespace'></span> MB</div> 72 <div>Free space: <span id='local-storage-freespace'></span> MB</div>
59 </body> 73 </body>
60 </html> 74 </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