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

Side by Side Diff: chrome/test/data/extensions/api_test/browser_action/close_background/manifest.json

Issue 10690016: Check zero-length icon files during extension validation. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: icon removed Created 8 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
OLDNEW
1 { 1 {
2 "name": "Close Background Page", 2 "name": "Close Background Page",
3 "description": "Click the browser action to close the background page.", 3 "description": "Click the browser action to close the background page.",
4 "version": "1", 4 "version": "1",
5 "manifest_version": 2, 5 "manifest_version": 2,
6 "background": { 6 "background": {
7 "scripts": ["background.js"] 7 "scripts": ["background.js"]
8 }, 8 },
9 "browser_action": { 9 "browser_action": {
10 "default_icon" : "icon.png",
11 "default_title": "close background page" 10 "default_title": "close background page"
12 } 11 }
13 } 12 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698