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

Side by Side Diff: chrome/test/data/extensions/socket_permissions/socket2.json

Issue 10692160: Support socket endpoint permissions for AppsV2 Socket API. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Rebase and fix a unit test Created 8 years, 4 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
« no previous file with comments | « chrome/test/data/extensions/socket_permissions/socket1.json ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 {
2 "name": "effective host permisions test",
3 "version": "1.0",
4 "manifest_version": 2,
5 "app": {
6 "background": {
7 "scripts": ["background.js"]
8 }
9 },
10 "permissions": [
11 {"socket": [
12 "tcp-connect",
13 "tcp-connect:example.com",
14 "tcp-connect:example.com:80",
15 "tcp-connect:example.com:*",
16 "tcp-connect:*.example.com",
17 "tcp-listen",
18 "tcp-listen::8080",
19 "udp-bind::8888",
20 "udp-send-to:239.255.255.250:1900"
21 ]}
22 ]
23 }
OLDNEW
« no previous file with comments | « chrome/test/data/extensions/socket_permissions/socket1.json ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698