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

Unified 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: Fixed indentation. 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 side-by-side diff with in-line comments
Download patch
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>
+ <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>
« no previous file with comments | « chrome/browser/resources/chromeos/fsp_internals.css ('k') | chrome/browser/resources/chromeos/fsp_internals.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698