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

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

Issue 386853002: Add a Record button to the web-app if the host supports video recording. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase 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 | Annotate | Revision Log
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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 "{{ OAUTH2_API_BASE_URL }}/*", 60 "{{ OAUTH2_API_BASE_URL }}/*",
61 "{{ DIRECTORY_API_BASE_URL }}/*", 61 "{{ DIRECTORY_API_BASE_URL }}/*",
62 "{{ TALK_GADGET_HOST }}/talkgadget/*", 62 "{{ TALK_GADGET_HOST }}/talkgadget/*",
63 "https://relay.google.com/*", 63 "https://relay.google.com/*",
64 "storage", 64 "storage",
65 "clipboardRead", 65 "clipboardRead",
66 "clipboardWrite", 66 "clipboardWrite",
67 "nativeMessaging" 67 "nativeMessaging"
68 {% if webapp_type != 'v1' %} 68 {% if webapp_type != 'v1' %}
69 , 69 ,
70 {"fileSystem": ["write"]},
70 "fullscreen", 71 "fullscreen",
71 "identity", 72 "identity",
72 "contextMenus", 73 "contextMenus",
73 "overrideEscFullscreen" 74 "overrideEscFullscreen"
74 {% endif %} 75 {% endif %}
75 {% if webapp_type == 'v2_pnacl' %} 76 {% if webapp_type == 'v2_pnacl' %}
76 ,{ 77 ,{
77 "socket": [ 78 "socket": [
78 "tcp-connect", 79 "tcp-connect",
79 "tcp-listen", 80 "tcp-listen",
80 "udp-send-to", 81 "udp-send-to",
81 "udp-bind", 82 "udp-bind",
82 "udp-multicast-membership", 83 "udp-multicast-membership",
83 "resolve-host", 84 "resolve-host",
84 "network-state" 85 "network-state"
85 ] 86 ]
86 } 87 }
87 {% endif %} 88 {% endif %}
88 ] 89 ]
89 } 90 }
OLDNEW
« remoting/webapp/html/window_frame.html ('K') | « remoting/webapp/html/window_frame.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698