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

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

Issue 1127283003: Make some file_system_provider_capabilities fields optional. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Cleaned up. 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.mount in extensions", 4 "name": "chrome.fileSystemProvider.mount in extensions",
5 "version": "0.1", 5 "version": "0.1",
6 "manifest_version": 2, 6 "manifest_version": 2,
7 "description": "Test for chrome.fileSystemProvider.mount() in an extension.", 7 "description": "Test for chrome.fileSystemProvider.mount() in an extension.",
8 "permissions": ["fileSystemProvider", "fileManagerPrivate"], 8 "permissions": ["fileSystemProvider", "fileManagerPrivate"],
9 "file_system_provider_capabilities": { 9 "file_system_provider_capabilities": {
10 "configurable": true,
11 "multiple_mounts": true,
12 "source": "device" 10 "source": "device"
13 }, 11 },
14 "background": { 12 "background": {
15 "persistent": false, 13 "persistent": false,
16 "scripts": [ 14 "scripts": [
17 "chrome-extension://gfnblenhaahcnmfdbebgincjohfkbnch/test_util.js", 15 "chrome-extension://gfnblenhaahcnmfdbebgincjohfkbnch/test_util.js",
18 "test.js" 16 "test.js"
19 ] 17 ]
20 } 18 }
21 } 19 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698