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

Unified Diff: chrome/browser/resources/chromeos/fsp_internals.html

Issue 300023008: [fsp] Rename chrome://fsp-internals to chrome://provided-file-systems. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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
deleted file mode 100644
index 101d061075a2cd324e699492c66c45657ad0311c..0000000000000000000000000000000000000000
--- a/chrome/browser/resources/chromeos/fsp_internals.html
+++ /dev/null
@@ -1,47 +0,0 @@
-<!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