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

Unified Diff: chrome/common/extensions/docs/templates/intros/fileSystemProvider.html

Issue 1127273004: Update documentation for "file_system_provider" manifest section. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed. Created 5 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
« no previous file with comments | « no previous file | chrome/common/extensions/docs/templates/json/manifest.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/extensions/docs/templates/intros/fileSystemProvider.html
diff --git a/chrome/common/extensions/docs/templates/intros/fileSystemProvider.html b/chrome/common/extensions/docs/templates/intros/fileSystemProvider.html
index 7ca0ab38c80a3907636ac3abf58904e6b9a74e6c..9c406b268f35918e02369b24ff94e14ad5f07d1b 100644
--- a/chrome/common/extensions/docs/templates/intros/fileSystemProvider.html
+++ b/chrome/common/extensions/docs/templates/intros/fileSystemProvider.html
@@ -1,5 +1,5 @@
<h2 id="manifest">Manifest</h2>
-<p>You must declare the "fileSystemProvider" permission
+<p>You must declare the "fileSystemProvider" permission and section
not at google - send to devlin 2015/05/08 16:47:39 Is "and" actually true here, or is it an "and/or"
mtomasz 2015/05/11 01:08:04 It's currently optional, as I wanted to keep backw
not at google - send to devlin 2015/05/12 00:08:51 manifest section to something more meaningful, lik
in the <a href="manifest">extension manifest</a>
to use the File System Provider API.
For example:</p>
@@ -7,13 +7,25 @@ For example:</p>
{
"name": "My extension",
...
- <b>"permissions": [
+ "permissions": [
"fileSystemProvider"
- ]</b>,
+ ],
+ ...
+ "file_system_provider": [
+ "configurable": true,
+ "multiple_mounts": true,
+ "source": "network"
+ ],
...
}
</pre>
+<p class="api_reference">
+The <code>file_system_provider</code> section must be declared as follows:
+{{+partials.manifest_type
+ type:apis.extensions.manifestTypes.byName.FileSystemProviderCapabilities /}}
+</p>
+
<h2 id="overview">Overview</h2>
<p>
File System Provider API allows extensions to support virtual file systems,
« no previous file with comments | « no previous file | chrome/common/extensions/docs/templates/json/manifest.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698