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

Side by Side Diff: remoting/webapp/app_remoting/manifest_common.json.jinja2

Issue 868393003: [Chromoting] Add socket permission to AppRemoting manifest. (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
« no previous file with comments | « no previous file | 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
1 {{ MANIFEST_KEY_FOR_UNOFFICIAL_BUILD }} 1 {{ MANIFEST_KEY_FOR_UNOFFICIAL_BUILD }}
2 "name": "{{APP_NAME}}", 2 "name": "{{APP_NAME}}",
3 "description": "{{APP_DESCRIPTION}}", 3 "description": "{{APP_DESCRIPTION}}",
4 "version": "{{ FULL_APP_VERSION }}", 4 "version": "{{ FULL_APP_VERSION }}",
5 "manifest_version": 2, 5 "manifest_version": 2,
6 "default_locale": "en", 6 "default_locale": "en",
7 "app": { 7 "app": {
8 "background": { 8 "background": {
9 "scripts": ["ar_background.js", "platform.js"] 9 "scripts": ["ar_background.js", "platform.js"]
10 } 10 }
(...skipping 15 matching lines...) Expand all
26 "app.window.shape", 26 "app.window.shape",
27 "clipboardRead", 27 "clipboardRead",
28 "clipboardWrite", 28 "clipboardWrite",
29 "contextMenus", 29 "contextMenus",
30 "experimental", 30 "experimental",
31 "fileSystem", 31 "fileSystem",
32 "fullscreen", 32 "fullscreen",
33 "https://relay.google.com/*", 33 "https://relay.google.com/*",
34 "identity", 34 "identity",
35 "pointerLock", 35 "pointerLock",
36 "storage" 36 "storage",
37 {
38 "socket": [
39 "tcp-connect",
40 "tcp-listen",
41 "udp-send-to",
42 "udp-bind",
43 "udp-multicast-membership",
44 "resolve-host",
45 "network-state"
46 ]
47 }
37 ], 48 ],
38 "oauth2": { 49 "oauth2": {
39 "client_id": "{{ REMOTING_IDENTITY_API_CLIENT_ID }}", 50 "client_id": "{{ REMOTING_IDENTITY_API_CLIENT_ID }}",
40 "scopes": [ 51 "scopes": [
41 "https://www.googleapis.com/auth/appremoting.runapplication https://www.go ogleapis.com/auth/googletalk https://www.googleapis.com/auth/userinfo#email http s://www.googleapis.com/auth/userinfo.profile https://docs.google.com/feeds/ http s://www.googleapis.com/auth/drive" 52 "https://www.googleapis.com/auth/appremoting.runapplication https://www.go ogleapis.com/auth/googletalk https://www.googleapis.com/auth/userinfo#email http s://www.googleapis.com/auth/userinfo.profile https://docs.google.com/feeds/ http s://www.googleapis.com/auth/drive"
42 ] 53 ]
43 }, 54 },
44 "sandbox": { 55 "sandbox": {
45 "pages": [ "wcs_sandbox.html" ] 56 "pages": [ "wcs_sandbox.html" ]
46 } 57 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698