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

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

Issue 296003012: [fsp] Introduce chrome://fsp-internals for logging and debugging. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased + addressed comments. Created 6 years, 7 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
(Empty)
1 <!doctype html>
2 <html>
3 <head>
4 <title>File System Provider API - internals</title>
5 <meta charset="utf-8">
6 <link rel="stylesheet" href="fsp_internals.css">
7 <script src="chrome://fsp-internals/fsp_internals.js"></script>
8 </head>
9 <body>
10 <polymer-element name="file-systems">
11 <template>
12 <link rel="stylesheet"
13 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.
14 <table>
15 <thead>
16 <tr>
17 <th>ID</th>
18 <th>Name</th>
19 <th>Extension ID</th>
20 <th>Active Requests</th>
21 </tr>
22 </thead>
23 <tbody>
24 <template id="file-system" repeat="{{item in model}}">
25 <tr>
26 <td>{{item.id}}</td>
27 <td>{{item.name}}</td>
28 <td>
29 <div class="icon" style="background-image: -webkit-image-set(
30 url(chrome://extension-icon/{{item.extensionId}}/24/1) 1x,
31 url(chrome://extension-icon/{{item.extensionId}}/48/1)
32 2x)"></div>
33 {{item.extensionId}}
34 </td>
35 <td>{{item.activeRequests}}</td>
36 </tr>
37 </template>
38 </tbody>
39 </table>
40 </template>
41 </polymer-element>
42
43 <h1>Mounted provided file systems</h1>
44 <file-systems id="mounted-file-systems">
45 </file-systems>
46 </body>
47 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698