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

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

Issue 985533004: Implement chrome.fileSystem.requestFileSystem(). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed kiosk mode. Created 5 years, 9 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.onReadFileRequested (evil edge-case tests)" , 4 "name": "chrome.fileSystemProvider.onReadFileRequested (evil edge-case tests)" ,
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.onReadFileRequested(). Testing evil be havior of providing extensions.", 8 "Test for chrome.fileSystemProvider.onReadFileRequested(). Testing evil be havior of providing extensions.",
9 "permissions": [ 9 "permissions": [
10 "fileSystemProvider", 10 "fileSystemProvider",
11 {
12 "fileSystem": ["requestFileSystem", "write"]
13 },
11 "fileManagerPrivate", 14 "fileManagerPrivate",
12 "fileBrowserHandler" 15 "fileBrowserHandler"
13 ], 16 ],
14 "app": { 17 "app": {
15 "background": { 18 "background": {
16 "scripts": [ 19 "scripts": [
17 "chrome-extension://gfnblenhaahcnmfdbebgincjohfkbnch/test_util.js", 20 "chrome-extension://gfnblenhaahcnmfdbebgincjohfkbnch/test_util.js",
18 "test.js" 21 "test.js"
19 ] 22 ]
20 } 23 }
21 } 24 }
22 } 25 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698