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

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

Issue 878413007: Fix manifest's externally_connectable to use the correct Hangouts URL (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase 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 { 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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 "scopes": [ 55 "scopes": [
56 "https://www.googleapis.com/auth/chromoting https://www.googleapis.com/aut h/googletalk https://www.googleapis.com/auth/userinfo#email" 56 "https://www.googleapis.com/auth/chromoting https://www.googleapis.com/aut h/googletalk https://www.googleapis.com/auth/userinfo#email"
57 ] 57 ]
58 }, 58 },
59 "sandbox": { 59 "sandbox": {
60 "pages": [ "wcs_sandbox.html" ] 60 "pages": [ "wcs_sandbox.html" ]
61 }, 61 },
62 {% endif %} 62 {% endif %}
63 "externally_connectable": { 63 "externally_connectable": {
64 "matches": [ 64 "matches": [
65 "https://*.talkgadget.google.com/*" 65 "https://*.google.com/hangouts*"
66 ] 66 ]
67 }, 67 },
68 "permissions": [ 68 "permissions": [
69 "{{ OAUTH2_ACCOUNTS_HOST }}/*", 69 "{{ OAUTH2_ACCOUNTS_HOST }}/*",
70 "{{ OAUTH2_API_BASE_URL }}/*", 70 "{{ OAUTH2_API_BASE_URL }}/*",
71 "{{ DIRECTORY_API_BASE_URL }}/*", 71 "{{ DIRECTORY_API_BASE_URL }}/*",
72 "{{ TALK_GADGET_HOST }}/talkgadget/*", 72 "{{ TALK_GADGET_HOST }}/talkgadget/*",
73 "https://relay.google.com/*", 73 "https://relay.google.com/*",
74 "storage", 74 "storage",
75 "clipboardRead", 75 "clipboardRead",
(...skipping 15 matching lines...) Expand all
91 "udp-send-to", 91 "udp-send-to",
92 "udp-bind", 92 "udp-bind",
93 "udp-multicast-membership", 93 "udp-multicast-membership",
94 "resolve-host", 94 "resolve-host",
95 "network-state" 95 "network-state"
96 ] 96 ]
97 } 97 }
98 {% endif %} 98 {% endif %}
99 ] 99 ]
100 } 100 }
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