Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: templates/chromeInfo.js.tmpl

Issue 29345751: Issue 4028 - Add support for Edge extensions to buildtools (Closed)
Patch Set: Address comments on patch set 7 Created Oct. 4, 2016, 2:37 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* This Source Code Form is subject to the terms of the Mozilla Public 1 /* This Source Code Form is subject to the terms of the Mozilla Public
2 * License, v. 2.0. If a copy of the MPL was not distributed with this 2 * License, v. 2.0. If a copy of the MPL was not distributed with this
3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
4 4
5 "use strict"; 5 "use strict";
6 6
7 (function() { 7 (function() {
8 var platform = "chromium"; 8 var platform = "chromium";
9 var platformVersion = null; 9 var platformVersion = null;
10 var application = null; 10 var application = null;
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 addonName: {{ metadata.get('general', 'basename')|json }}, 57 addonName: {{ metadata.get('general', 'basename')|json }},
58 addonVersion: {{ version|json }}, 58 addonVersion: {{ version|json }},
59 59
60 application: application, 60 application: application,
61 applicationVersion: applicationVersion, 61 applicationVersion: applicationVersion,
62 62
63 platform: platform, 63 platform: platform,
64 platformVersion: platformVersion 64 platformVersion: platformVersion
65 }; 65 };
66 })(); 66 })();
OLDNEW

Powered by Google App Engine
This is Rietveld