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

Side by Side Diff: remoting/webapp/manifest.json.jinja2

Issue 464133003: CastExtensionHandler for Chromoting Webapp (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: minor fix Created 6 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 | « remoting/webapp/js_proto/chrome_proto.js ('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
1 { 1 {
2 {{ MANIFEST_KEY_FOR_UNOFFICIAL_BUILD }} 2 {{ MANIFEST_KEY_FOR_UNOFFICIAL_BUILD }}
3 "name": "__MSG_PRODUCT_NAME__", 3 "name": "__MSG_PRODUCT_NAME__",
4 "version": "{{ FULL_APP_VERSION }}", 4 "version": "{{ FULL_APP_VERSION }}",
5 "description": "__MSG_PRODUCT_DESCRIPTION__", 5 "description": "__MSG_PRODUCT_DESCRIPTION__",
6 "manifest_version": 2, 6 "manifest_version": 2,
7 "default_locale": "en", 7 "default_locale": "en",
8 "minimum_chrome_version": "32", 8 "minimum_chrome_version": "32",
9 "app": { 9 "app": {
10 {% if webapp_type == 'v1' %} 10 {% if webapp_type == 'v1' %}
(...skipping 19 matching lines...) Expand all
30 ], 30 ],
31 "js": [ "cs_oauth2_trampoline.js" ] 31 "js": [ "cs_oauth2_trampoline.js" ]
32 }, 32 },
33 { 33 {
34 "matches": [ 34 "matches": [
35 "{{ THIRD_PARTY_AUTH_REDIRECT_URL }}" 35 "{{ THIRD_PARTY_AUTH_REDIRECT_URL }}"
36 ], 36 ],
37 "js": [ "cs_third_party_auth_trampoline.js" ] 37 "js": [ "cs_third_party_auth_trampoline.js" ]
38 } 38 }
39 ], 39 ],
40 "content_security_policy": "default-src 'self'; script-src 'self' {{ TALK_GADG ET_HOST }}; style-src 'self' https://fonts.googleapis.com; img-src 'self' {{ TAL K_GADGET_HOST }} data:; font-src *; connect-src 'self' {{ OAUTH2_ACCOUNTS_HOST } } {{ GOOGLE_API_HOSTS }} {{ TALK_GADGET_HOST }} https://relay.google.com", 40 "content_security_policy": "default-src 'self'; script-src 'self' {{ TALK_GADG ET_HOST }} https://www.gstatic.com; style-src 'self' https://fonts.googleapis.co m; img-src 'self' {{ TALK_GADGET_HOST }} data:; font-src *; connect-src 'self' { { OAUTH2_ACCOUNTS_HOST }} {{ GOOGLE_API_HOSTS }} {{ TALK_GADGET_HOST }} https:// relay.google.com",
41 {% endif %} 41 {% endif %}
42 "optional_permissions": [ 42 "optional_permissions": [
43 "<all_urls>" 43 "<all_urls>"
44 ], 44 ],
45 45
46 {% if webapp_type != 'v1' %} 46 {% if webapp_type != 'v1' %}
47 "oauth2": { 47 "oauth2": {
48 "client_id": "{{ REMOTING_IDENTITY_API_CLIENT_ID }}", 48 "client_id": "{{ REMOTING_IDENTITY_API_CLIENT_ID }}",
49 "scopes": [ 49 "scopes": [
50 "https://www.googleapis.com/auth/chromoting https://www.googleapis.com/aut h/googletalk https://www.googleapis.com/auth/userinfo#email" 50 "https://www.googleapis.com/auth/chromoting https://www.googleapis.com/aut h/googletalk https://www.googleapis.com/auth/userinfo#email"
(...skipping 29 matching lines...) Expand all
80 "udp-send-to", 80 "udp-send-to",
81 "udp-bind", 81 "udp-bind",
82 "udp-multicast-membership", 82 "udp-multicast-membership",
83 "resolve-host", 83 "resolve-host",
84 "network-state" 84 "network-state"
85 ] 85 ]
86 } 86 }
87 {% endif %} 87 {% endif %}
88 ] 88 ]
89 } 89 }
OLDNEW
« no previous file with comments | « remoting/webapp/js_proto/chrome_proto.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698