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

Side by Side Diff: ppapi/tests/extensions/socket_permissions/manifest.json

Issue 949543002: PPAPI: Add test for new-style permission for Sockets (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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 "manifest_version": 2, 2 "manifest_version": 2,
3 "name": "packaged_app_test", 3 "name": "packaged_app_test",
4 "version": "0.1", 4 "version": "0.1",
5 "description": "Packaged App test for Pepper", 5 "description": "Packaged App test for Pepper",
6 "app": { 6 "app": {
7 "background": { 7 "background": {
8 "scripts": [ "main.js" ] 8 "scripts": [ "main.js" ]
9 } 9 }
10 },
11 "permissions": [{"socket": ["tcp-connect"]}],
12 "sockets": {
13 "tcp": {
14 "connect": "127.0.0.1:80"
15 }
10 } 16 }
11 } 17 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698