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

Unified Diff: chrome/common/extensions/docs/examples/api/fileSystemProvider/basic/manifest.json

Issue 587293002: Add fileSystemProvider API extension example. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Change basic example to a extension from app. Created 6 years, 3 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 | « chrome/common/extensions/docs/examples/api/fileSystemProvider/archive/manifest.json ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/extensions/docs/examples/api/fileSystemProvider/basic/manifest.json
diff --git a/chrome/common/extensions/docs/examples/api/fileSystemProvider/basic/manifest.json b/chrome/common/extensions/docs/examples/api/fileSystemProvider/basic/manifest.json
index fb71b39bb8336b18b3b1fbbe25f7e28649a723cb..c480355f53a19e89e091fda59430294612a4155e 100644
--- a/chrome/common/extensions/docs/examples/api/fileSystemProvider/basic/manifest.json
+++ b/chrome/common/extensions/docs/examples/api/fileSystemProvider/basic/manifest.json
@@ -1,17 +1,15 @@
{
- "name": "File System Provider API Example",
+ "name": "File System Provider API Extension Example",
"version": "0.1",
"manifest_version": 2,
"description":
- "Demonstrate features of the API like mounting, listing directories, etc",
+ "Demonstrate features of the API like mounting, listing directories, etc for extensions.",
"permissions": [
"fileSystemProvider"
],
- "app": {
- "background": {
- "scripts": [
- "background.js"
- ]
- }
+ "background": {
+ "scripts": [
+ "background.js"
+ ]
}
}
« no previous file with comments | « chrome/common/extensions/docs/examples/api/fileSystemProvider/archive/manifest.json ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698