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

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

Issue 10825062: gdata: Add Cache Contents section to chrome:drive-internals (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 4 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 | Annotate | Revision Log
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 <h2>Authentication Status</h2> 12 <div>
13 <a href="#auth-status-section">Authentication Status</a> |
14 <a href="#gcache-contents-section">GCache Contents</a> |
15 <a href="#file-system-contents-section">File System Contents</a> |
16 <a href="#cache-contents-section">Cache Contents</a>
17 </div>
18
19 <h2 id='auth-status-contents-section'>Authentication Status</h2>
13 <ul> 20 <ul>
14 <li>Has refresh token: <span id='has-refresh-token'></span></li> 21 <li>Has refresh token: <span id='has-refresh-token'></span></li>
15 <li>Has access token: <span id='has-access-token'></span></li> 22 <li>Has access token: <span id='has-access-token'></span></li>
16 </ul> 23 </ul>
17 <h2>GCache Contents</h2> 24
25 <h2 id='gcache-contents-section'>GCache Contents</h2>
18 <table> 26 <table>
19 <tbody id='gcache-contents'></tbody> 27 <tbody id='gcache-contents'>
28 <tr><th>Path</th><th>Size</th><th>Last Modified</th></tr>
29 </tbody>
20 </table> 30 </table>
21 <h2>File System Contents</h2> 31
32 <h2 id='file-system-contents-section'>File System Contents</h2>
22 <div id='file-system-contents'></div> 33 <div id='file-system-contents'></div>
34
35 <h2 id='cache-contents-section'>Cache Contents</h2>
36 <table>
37 <tbody id='cache-contents'>
38 <tr>
39 <th>Resource ID</th>
40 <th>MD5</th>
41 <th>Present</th>
42 <th>Pinned</th>
43 <th>Dirty</th>
44 <th>Mounted</th>
45 <th>Persistent</th>
46 </tr>
47 </tbody>
48 </table>
23 </body> 49 </body>
24 </html> 50 </html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/chromeos/drive_internals.css ('k') | chrome/browser/resources/chromeos/drive_internals.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698