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

Side by Side Diff: chrome/test/data/extensions/api_test/page_action/old_api/manifest.json

Issue 10855154: Update browserAction.setIcon and pageAction.setIcon for hidpi (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: nits 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 | Annotate | Revision Log
OLDNEW
1 { 1 {
2 "name": "Test of old-style page actions API", 2 "name": "Test of old-style page actions API",
3 "version": "1.0", 3 "version": "1.0",
4 "background": { 4 "background": {
5 "page": "background.html" 5 "page": "background.html"
6 }, 6 },
7 "permissions": ["tabs"], 7 "permissions": ["tabs"],
8 "page_actions": [ 8 "page_actions": [
9 { "id": "action", 9 { "id": "action",
10 "name": "action", 10 "name": "action",
11 "icons": ["icon.png"] 11 "icons": ["icon.png", "icon1.png"]
12 } 12 }
13 ], 13 ],
14 "background": { 14 "background": {
15 "page": "background.html" 15 "page": "background.html"
16 } 16 }
17 } 17 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698