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

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

Issue 944123003: Hack webapp to request keyboard events on connection. Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Hacked up chromoting client and using mouse lock instead of keyboard lock for bubble. 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 | « remoting/webapp/crd/js/desktop_connected_view.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 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
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",
76 "clipboardWrite", 76 "clipboardWrite",
77 "nativeMessaging" 77 "nativeMessaging"
78 {% if webapp_type != 'v1' %} 78 {% if webapp_type != 'v1' %}
79 , 79 ,
80 {"fileSystem": ["write"]}, 80 {"fileSystem": ["write"]},
81 "fullscreen", 81 "fullscreen",
82 "app.window.interceptAllKeys",
82 "identity", 83 "identity",
83 "contextMenus", 84 "contextMenus",
84 "overrideEscFullscreen" 85 "overrideEscFullscreen"
85 {% endif %} 86 {% endif %}
86 {% if webapp_type != 'v1' %} 87 {% if webapp_type != 'v1' %}
87 ,{ 88 ,{
88 "socket": [ 89 "socket": [
89 "tcp-connect", 90 "tcp-connect",
90 "tcp-listen", 91 "tcp-listen",
91 "udp-send-to", 92 "udp-send-to",
92 "udp-bind", 93 "udp-bind",
93 "udp-multicast-membership", 94 "udp-multicast-membership",
94 "resolve-host", 95 "resolve-host",
95 "network-state" 96 "network-state"
96 ] 97 ]
97 } 98 }
98 {% endif %} 99 {% endif %}
99 ] 100 ]
100 } 101 }
OLDNEW
« no previous file with comments | « remoting/webapp/crd/js/desktop_connected_view.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698