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

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

Issue 450383003: Hangout remote desktop part II - background.html and AppLauncher (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address 2nd round feedbacks 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/unittests/base_unittest.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' %}
11 "launch": { 11 "launch": {
12 "local_path": "main.html" 12 "local_path": "main.html"
13 } 13 }
14 {% else %} 14 {% else %}
15 "background": { 15 "background": {
16 "scripts": ["background.js"] 16 "page": "background.html"
17 } 17 }
18 {% endif %} 18 {% endif %}
19 }, 19 },
20 "icons": { 20 "icons": {
21 "128": "chromoting128.webp", 21 "128": "chromoting128.webp",
22 "48": "chromoting48.webp", 22 "48": "chromoting48.webp",
23 "16": "chromoting16.webp" 23 "16": "chromoting16.webp"
24 }, 24 },
25 {% if webapp_type == 'v1' %} 25 {% if webapp_type == 'v1' %}
26 "content_scripts": [ 26 "content_scripts": [
27 { 27 {
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 "udp-send-to", 80 "udp-send-to",
81 "udp-bind", 81 "udp-bind",
82 "udp-multicast-membership", 82 "udp-multicast-membership",
83 "resolve-host", 83 "resolve-host",
84 "network-state" 84 "network-state"
85 ] 85 ]
86 } 86 }
87 {% endif %} 87 {% endif %}
88 ] 88 ]
89 } 89 }
OLDNEW
« no previous file with comments | « remoting/webapp/js_proto/chrome_proto.js ('k') | remoting/webapp/unittests/base_unittest.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698