Chromium Code Reviews| Index: chrome/browser/resources/chromeos/drive_internals.html |
| diff --git a/chrome/browser/resources/chromeos/drive_internals.html b/chrome/browser/resources/chromeos/drive_internals.html |
| index 15c5c724c4af520f1e546d8c1b16b35f4304ae68..87eab8530e5e941d2888f8134ba697c89917e00f 100644 |
| --- a/chrome/browser/resources/chromeos/drive_internals.html |
| +++ b/chrome/browser/resources/chromeos/drive_internals.html |
| @@ -3,17 +3,20 @@ |
| <head> |
| <title>drive-internals</title> |
| <meta charset="utf-8"> |
| + <link rel="stylesheet" href="drive_internals.css"> |
| <script src="chrome://resources/js/util.js"></script> |
| <script src="chrome://drive-internals/drive_internals.js"></script> |
| </head> |
| <body> |
| <h1>Drive Internals</h1> |
| <h2>Authentication Status</h2> |
| + <ul> |
| + <li>Has refresh token: <span id='has-refresh-token'></span></li> |
| + <li>Has access token: <span id='has-access-token'></span></li> |
| + </ul> |
| + <h2>GCache Contents</h2> |
| <table> |
|
James Hawkins
2012/07/26 19:30:41
You want to remove this table while you're at it?
satorux1
2012/07/26 20:29:23
I'd keep this for now.
|
| - <tbody> |
| - <tr><td>Has refresh token</td><td id='has-refresh-token'></td></tr> |
| - <tr><td>Has access token</td><td id='has-access-token'></td></tr> |
| - </tbody> |
| + <tbody id='gcache-contents'></tbody> |
| </table> |
| </body> |
| </html> |