Chromium Code Reviews| Index: chrome/browser/resources/chromeos/fsp_internals.html |
| diff --git a/chrome/browser/resources/chromeos/fsp_internals.html b/chrome/browser/resources/chromeos/fsp_internals.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..101d061075a2cd324e699492c66c45657ad0311c |
| --- /dev/null |
| +++ b/chrome/browser/resources/chromeos/fsp_internals.html |
| @@ -0,0 +1,47 @@ |
| +<!doctype html> |
| +<html> |
| + <head> |
| + <title>File System Provider API - internals</title> |
| + <meta charset="utf-8"> |
| + <link rel="stylesheet" href="fsp_internals.css"> |
| + <script src="chrome://fsp-internals/fsp_internals.js"></script> |
| + </head> |
| + <body> |
| + <polymer-element name="file-systems"> |
| + <template> |
| + <link rel="stylesheet" |
| + href="chrome://fsp-internals/fsp_internals.css"></link> |
|
Nikita (slow)
2014/05/23 15:33:52
nit: 4 spaces alignment
mtomasz
2014/05/26 00:34:31
AFAIK we can align attributes.
|
| + <table> |
| + <thead> |
| + <tr> |
| + <th>ID</th> |
| + <th>Name</th> |
| + <th>Extension ID</th> |
| + <th>Active Requests</th> |
| + </tr> |
| + </thead> |
| + <tbody> |
| + <template id="file-system" repeat="{{item in model}}"> |
| + <tr> |
| + <td>{{item.id}}</td> |
| + <td>{{item.name}}</td> |
| + <td> |
| + <div class="icon" style="background-image: -webkit-image-set( |
| + url(chrome://extension-icon/{{item.extensionId}}/24/1) 1x, |
| + url(chrome://extension-icon/{{item.extensionId}}/48/1) |
| + 2x)"></div> |
| + {{item.extensionId}} |
| + </td> |
| + <td>{{item.activeRequests}}</td> |
| + </tr> |
| + </template> |
| + </tbody> |
| + </table> |
| + </template> |
| + </polymer-element> |
| + |
| + <h1>Mounted provided file systems</h1> |
| + <file-systems id="mounted-file-systems"> |
| + </file-systems> |
| + </body> |
| +</html> |