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

Side by Side Diff: chrome/common/extensions/docs/templates/private/manifest_example.html

Issue 15842014: Doc Server Manifest Generation Followup Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Header absolute URL fix Created 7 years, 5 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
OLDNEW
(Empty)
1 <pre>
2 {
3 <em>// Required</em>
4 {{#manifest_source.required}}
5 {{+partials.manifest_properties}}
6 {{/manifest_source.required}}
7
8 <em>// Recommended</em>
9 {{#manifest_source.recommended}}
10 {{+partials.manifest_properties}}
11 {{/manifest_source.recommended}}
12
13 {{?manifest_source.only_one}}
14 <em>// Pick one (or none)</em>
15 {{#manifest_source.only_one}}
16 {{+partials.manifest_properties}}
17 {{/manifest_source.only_one}}
18
19 {{/manifest_source.only_one}}
20 <em>// Optional</em>
21 {{#manifest_source.optional}}
22 {{+partials.manifest_properties}}
23 {{/manifest_source.optional}}
24 }
25 </pre>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698