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

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

Issue 374543002: [fsp] Simplify browser tests by extracting the common code. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed. Created 6 years, 5 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 | Annotate | Revision Log
OLDNEW
1 { 1 {
2 "key": "MIGdMA0GCSqGSIb3DQEBAQUAA4GLADCBhwKBgQDOuXEIuoK1kAkBe0SKiJn/N9oNn3oUxG a4dwj40MnJqPn+w0aR2vuyocm0R4Drp67aYwtLjOVPF4CICRq6ICP6eU07gGwQxGdZ7HJASXV8hm0tab 5I70oJmRLfFJyVAMCeWlFaOGq05v2i6EbifZM0qO5xALKNGQt+yjXi5INM5wIBIw==", 2 "key": "MIGdMA0GCSqGSIb3DQEBAQUAA4GLADCBhwKBgQDOuXEIuoK1kAkBe0SKiJn/N9oNn3oUxG a4dwj40MnJqPn+w0aR2vuyocm0R4Drp67aYwtLjOVPF4CICRq6ICP6eU07gGwQxGdZ7HJASXV8hm0tab 5I70oJmRLfFJyVAMCeWlFaOGq05v2i6EbifZM0qO5xALKNGQt+yjXi5INM5wIBIw==",
3 "name": "chrome.fileSystemProvider.onGetMetadataRequested (mime types)", 3 "name": "chrome.fileSystemProvider.onGetMetadataRequested (mime types)",
4 "version": "0.1", 4 "version": "0.1",
5 "manifest_version": 2, 5 "manifest_version": 2,
6 "description": 6 "description":
7 "Test for chrome.fileSystemProvider.onGetMetadataRequested(). Mime types." , 7 "Test for chrome.fileSystemProvider.onGetMetadataRequested(). Mime types." ,
8 "permissions": [ 8 "permissions": [
9 "fileSystemProvider", 9 "fileSystemProvider",
10 "fileBrowserPrivate", 10 "fileBrowserPrivate",
11 "fileBrowserHandler" 11 "fileBrowserHandler"
12 ], 12 ],
13 "file_handlers": { 13 "file_handlers": {
14 "magic_handler": { 14 "magic_handler": {
15 "types": ["text/secret-testing-mime-type"] 15 "types": ["text/secret-testing-mime-type"]
16 } 16 }
17 }, 17 },
18 "app": { 18 "app": {
19 "background": { 19 "background": {
20 "scripts": ["test.js"] 20 "scripts": [
21 "chrome-extension://gfnblenhaahcnmfdbebgincjohfkbnch/test_util.js",
22 "test.js"
23 ]
21 } 24 }
22 } 25 }
23 } 26 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698