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

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

Issue 973333002: Remove Hangout Remote Desktop integration code from the webapp. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase + manifest changes Created 5 years, 9 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_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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 "oauth2": { 53 "oauth2": {
54 "client_id": "{{ REMOTING_IDENTITY_API_CLIENT_ID }}", 54 "client_id": "{{ REMOTING_IDENTITY_API_CLIENT_ID }}",
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": {
64 "matches": [
65 "https://*.google.com/hangouts*"
66 ]
67 },
68 "permissions": [ 63 "permissions": [
69 "{{ OAUTH2_ACCOUNTS_HOST }}/*", 64 "{{ OAUTH2_ACCOUNTS_HOST }}/*",
70 "{{ OAUTH2_API_BASE_URL }}/*", 65 "{{ OAUTH2_API_BASE_URL }}/*",
71 "{{ DIRECTORY_API_BASE_URL }}/*", 66 "{{ DIRECTORY_API_BASE_URL }}/*",
72 "{{ TALK_GADGET_HOST }}/talkgadget/*", 67 "{{ TALK_GADGET_HOST }}/talkgadget/*",
73 "https://relay.google.com/*", 68 "https://relay.google.com/*",
74 "storage", 69 "storage",
75 "clipboardRead", 70 "clipboardRead",
76 "clipboardWrite", 71 "clipboardWrite",
77 "nativeMessaging" 72 "nativeMessaging"
(...skipping 13 matching lines...) Expand all
91 "udp-send-to", 86 "udp-send-to",
92 "udp-bind", 87 "udp-bind",
93 "udp-multicast-membership", 88 "udp-multicast-membership",
94 "resolve-host", 89 "resolve-host",
95 "network-state" 90 "network-state"
96 ] 91 ]
97 } 92 }
98 {% endif %} 93 {% endif %}
99 ] 94 ]
100 } 95 }
OLDNEW
« no previous file with comments | « remoting/webapp/crd/js/it2me_service.js ('k') | remoting/webapp/unittests/it2me_helpee_channel_unittest.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698