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

Side by Side Diff: chrome/test/data/banners/manifest.json

Issue 2641413002: Allow InstallableManager to fetch optional badge icon (Closed)
Patch Set: Fix rebase Created 3 years, 10 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
« no previous file with comments | « chrome/browser/installable/installable_manager_unittest.cc ('k') | no next file » | 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 "name": "Manifest test app", 2 "name": "Manifest test app",
3 "icons": [ 3 "icons": [
4 { 4 {
5 "src": "launcher-icon-1x.png", 5 "src": "launcher-icon-1x.png",
6 "sizes": "48x48", 6 "sizes": "48x48",
7 "type": "image/png" 7 "type": "image/png"
8 }, 8 },
9 { 9 {
10 "src": "launcher-icon-1-5x.png", 10 "src": "launcher-icon-1-5x.png",
11 "sizes": "72x72", 11 "sizes": "72x72",
12 "type": "image/png" 12 "type": "image/png"
13 }, 13 },
14 { 14 {
15 "src": "launcher-icon-2x.png", 15 "src": "launcher-icon-2x.png",
16 "sizes": "96x96", 16 "sizes": "96x96",
17 "type": "image/png" 17 "type": "image/png",
18 "purpose": "any badge"
18 }, 19 },
19 { 20 {
20 "src": "launcher-icon-3x.png", 21 "src": "launcher-icon-3x.png",
21 "sizes": "144x144", 22 "sizes": "144x144",
22 "type": "image/png" 23 "type": "image/png"
23 }, 24 },
24 { 25 {
25 "src": "launcher-icon-4x.png", 26 "src": "launcher-icon-4x.png",
26 "sizes": "192x192", 27 "sizes": "192x192",
27 "type": "image/png" 28 "type": "image/png"
28 }, 29 },
29 { 30 {
30 "src": "image-512px.png", 31 "src": "image-512px.png",
31 "sizes": "512x512", 32 "sizes": "512x512",
32 "type": "image/png" 33 "type": "image/png"
33 } 34 }
34 ], 35 ],
35 "start_url": "manifest_test_page.html", 36 "start_url": "manifest_test_page.html",
36 "display": "standalone", 37 "display": "standalone",
37 "orientation": "landscape" 38 "orientation": "landscape"
38 } 39 }
OLDNEW
« no previous file with comments | « chrome/browser/installable/installable_manager_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698