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

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: function -> var 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
« no previous file with comments | « remoting/webapp/js_proto/chrome_proto.js ('k') | remoting/webapp/options_menu.js » ('j') | 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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
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",
76 "clipboardWrite", 76 "clipboardWrite",
77 "nativeMessaging" 77 "nativeMessaging"
78 {% if webapp_type != 'v1' %} 78 {% if webapp_type != 'v1' %}
79 , 79 ,
80 {"fileSystem": ["write"]},
80 "fullscreen", 81 "fullscreen",
81 "identity", 82 "identity",
82 "contextMenus", 83 "contextMenus",
83 "overrideEscFullscreen" 84 "overrideEscFullscreen"
84 {% endif %} 85 {% endif %}
85 {% if webapp_type == 'v2_pnacl' %} 86 {% if webapp_type == 'v2_pnacl' %}
86 ,{ 87 ,{
87 "socket": [ 88 "socket": [
88 "tcp-connect", 89 "tcp-connect",
89 "tcp-listen", 90 "tcp-listen",
90 "udp-send-to", 91 "udp-send-to",
91 "udp-bind", 92 "udp-bind",
92 "udp-multicast-membership", 93 "udp-multicast-membership",
93 "resolve-host", 94 "resolve-host",
94 "network-state" 95 "network-state"
95 ] 96 ]
96 } 97 }
97 {% endif %} 98 {% endif %}
98 ] 99 ]
99 } 100 }
OLDNEW
« no previous file with comments | « remoting/webapp/js_proto/chrome_proto.js ('k') | remoting/webapp/options_menu.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698