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

Side by Side Diff: chrome/test/data/extensions/ui/create_extension_detail_value_expected_output/good-extension1.json

Issue 360039: Fix bug where we were not displaying icons in the management (Closed)
Patch Set: update test data Created 11 years, 1 month 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
1 { 1 {
2 "id": "behllobkkfkfnphdnhnkndlbkcpglgmj", 2 "id": "behllobkkfkfnphdnhnkndlbkcpglgmj",
3 "version": "1.0.0.0", 3 "version": "1.0.0.0",
4 "name": "My extension 1", 4 "name": "My extension 1",
5 "enabled": true, 5 "enabled": true,
6 "description": "The first extension that I made.", 6 "description": "The first extension that I made.",
7 "permissions": ["http://*.google.com/*", "https://*.google.com/*"], 7 "permissions": ["http://*.google.com/*", "https://*.google.com/*"],
8 "icon": "icon_128.png",
9 "order": 2, 8 "order": 2,
10 "content_scripts": [ 9 "content_scripts": [
11 { 10 {
12 "matches": ["file://*", "http://*.google.com/*", "https://*.google.com/*"] , 11 "matches": ["file://*", "http://*.google.com/*", "https://*.google.com/*"] ,
13 "js": ["script1.js", "script2.js"], 12 "js": ["script1.js", "script2.js"],
14 "css": ["style1.css", "style2.css", "style2.css"] 13 "css": ["style1.css", "style2.css", "style2.css"]
15 }, 14 },
16 { 15 {
17 "matches": ["http://*.news.com/*"], 16 "matches": ["http://*.news.com/*"],
18 "js": ["js_files/script3.js"] 17 "js": ["js_files/script3.js"]
19 } 18 }
20 ], 19 ],
21 "views": [ 20 "views": [
22 { 21 {
23 "path": "bar.html", 22 "path": "bar.html",
24 "render_proess_id": 42, 23 "render_proess_id": 42,
25 "render_view_id": 88 24 "render_view_id": 88
26 }, 25 },
27 { 26 {
28 "path": "dog.html", 27 "path": "dog.html",
29 "render_proess_id": 0, 28 "render_proess_id": 0,
30 "render_view_id": 0 29 "render_view_id": 0
31 } 30 }
32 ] 31 ]
33 } 32 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698