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

Side by Side Diff: chrome/test/data/extensions/browsertest/request_quota_background/manifest.json

Issue 10948002: Make quota requests from background pages not crash (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 8 years, 3 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": "Popup Test", 2 "name": "requestQuota in background",
3 "version": "1.0", 3 "version": "1.0",
4 "manifest_version": 2, 4 "manifest_version": 2,
5 "page_action": { 5 "page_action": {
6 "default_icon": "icon.png",
7 "default_popup": "popup.html" 6 "default_popup": "popup.html"
8 }, 7 },
9 "background": { 8 "background": {
10 "scripts": ["background.js"] 9 "scripts": ["background.js"]
11 }, 10 },
12 "permissions": [ "tabs", "http://*/*" ] 11 "permissions": [ "tabs" ]
13 } 12 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698