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

Unified Diff: chrome/test/data/extensions/api_test/file_system_provider/extension/manifest.json

Issue 527663002: [fsp] Enable the File System Provider API for extensions. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased. 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
Index: chrome/test/data/extensions/api_test/file_system_provider/extension/manifest.json
diff --git a/chrome/test/data/extensions/api_test/file_system_provider/get_all/manifest.json b/chrome/test/data/extensions/api_test/file_system_provider/extension/manifest.json
similarity index 53%
copy from chrome/test/data/extensions/api_test/file_system_provider/get_all/manifest.json
copy to chrome/test/data/extensions/api_test/file_system_provider/extension/manifest.json
index 8e4932e46c2ecc1152fd472f6e96494d2b3007e2..b81661aedd13ffa600a4f4dbfe6f9aef607ec976 100644
--- a/chrome/test/data/extensions/api_test/file_system_provider/get_all/manifest.json
+++ b/chrome/test/data/extensions/api_test/file_system_provider/extension/manifest.json
@@ -1,16 +1,15 @@
{
"key": "MIGdMA0GCSqGSIb3DQEBAQUAA4GLADCBhwKBgQDOuXEIuoK1kAkBe0SKiJn/N9oNn3oUxGa4dwj40MnJqPn+w0aR2vuyocm0R4Drp67aYwtLjOVPF4CICRq6ICP6eU07gGwQxGdZ7HJASXV8hm0tab5I70oJmRLfFJyVAMCeWlFaOGq05v2i6EbifZM0qO5xALKNGQt+yjXi5INM5wIBIw==",
- "name": "chrome.fileSystemProvider.getAll",
+ "name": "chrome.fileSystemProvider.mount in extensions",
"version": "0.1",
"manifest_version": 2,
- "description": "Test for chrome.fileSystemProvider.getAll().",
+ "description": "Test for chrome.fileSystemProvider.mount() in an extension.",
"permissions": ["fileSystemProvider", "fileBrowserPrivate"],
- "app": {
- "background": {
- "scripts": [
- "chrome-extension://gfnblenhaahcnmfdbebgincjohfkbnch/test_util.js",
- "test.js"
- ]
- }
+ "background": {
+ "persistent": false,
+ "scripts": [
+ "chrome-extension://gfnblenhaahcnmfdbebgincjohfkbnch/test_util.js",
+ "test.js"
+ ]
}
}

Powered by Google App Engine
This is Rietveld 408576698