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

Side by Side Diff: chrome/test/data/extensions/api_test/file_system_provider/configure/manifest.json

Issue 1077823005: Declare providing extension capabilities in the manifest. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed tests. 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 unified diff | Download patch
OLDNEW
1 { 1 {
2 // chrome-extension://pkplfbidichfdicaijlchgnapepdginl 2 // chrome-extension://pkplfbidichfdicaijlchgnapepdginl
3 "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAtDfX9dHNh948bt00YhZBm3P6E5 QLaOt+v8kXVtibQfiPtOD2FTScB/f0wX/EQWVO7BkaSOsRkTPcPIgocyMPYr2FLgqGLFlYT9nQpKJZUF NF5oJ5rG6Nv7ppf4zEB3j6da1IBRTz2yOZ+6O1TMZxol/V62/QcqrJeggsHTEPGLdr9Ua4b1Ka0xKJnJ ngZljsbw93FI1o+P9dAh5BS6wTPiZI/vmJVjvMTkSTnaZ3n9Go2t7A0XLcSxLcVyuLAd2mAvSN0mIviO ukdM66wr7llif71nKuUt+4qvlr/r9HfwzN6pA4jkwhtS1UD+3CmB+wsHwsnohNcuu4FIQ6rgq/7QIDAQ AB", 3 "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAtDfX9dHNh948bt00YhZBm3P6E5 QLaOt+v8kXVtibQfiPtOD2FTScB/f0wX/EQWVO7BkaSOsRkTPcPIgocyMPYr2FLgqGLFlYT9nQpKJZUF NF5oJ5rG6Nv7ppf4zEB3j6da1IBRTz2yOZ+6O1TMZxol/V62/QcqrJeggsHTEPGLdr9Ua4b1Ka0xKJnJ ngZljsbw93FI1o+P9dAh5BS6wTPiZI/vmJVjvMTkSTnaZ3n9Go2t7A0XLcSxLcVyuLAd2mAvSN0mIviO ukdM66wr7llif71nKuUt+4qvlr/r9HfwzN6pA4jkwhtS1UD+3CmB+wsHwsnohNcuu4FIQ6rgq/7QIDAQ AB",
4 "name": "chrome.fileSystemProvider.onConfigureRequested", 4 "name": "chrome.fileSystemProvider.onConfigureRequested",
5 "version": "0.1", 5 "version": "0.1",
6 "manifest_version": 2, 6 "manifest_version": 2,
7 "description": 7 "description":
8 "Test for chrome.fileSystemProvider.onConfigureRequested().", 8 "Test for chrome.fileSystemProvider.onConfigureRequested().",
9 "permissions": [ 9 "permissions": [
10 "fileSystemProvider", 10 "fileSystemProvider",
11 { 11 {
12 "fileSystem": ["requestFileSystem", "write"] 12 "fileSystem": ["requestFileSystem", "write"]
13 }, 13 },
14 "fileManagerPrivate" 14 "fileManagerPrivate"
15 ], 15 ],
16 "file_system_provider": {
17 "configurable": true,
18 "multiple_mounts": false,
19 "source": "device"
20 },
16 "app": { 21 "app": {
17 "background": { 22 "background": {
18 "scripts": [ 23 "scripts": [
19 "chrome-extension://gfnblenhaahcnmfdbebgincjohfkbnch/test_util.js", 24 "chrome-extension://gfnblenhaahcnmfdbebgincjohfkbnch/test_util.js",
20 "test.js" 25 "test.js"
21 ] 26 ]
22 } 27 }
23 } 28 }
24 } 29 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698