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

Unified Diff: chrome/browser/resources/chromeos/wallpaper_manager/manifest.json

Issue 11028121: Convert wallpaper picker to v2 app (Closed) Base URL: http://git.chromium.org/chromium/src.git@AppsV2
Patch Set: Update wallpaper picker to version .2 in manifest Created 8 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/chromeos/wallpaper_manager/manifest.json
diff --git a/chrome/browser/resources/chromeos/wallpaper_manager/manifest.json b/chrome/browser/resources/chromeos/wallpaper_manager/manifest.json
index c39971efb02e74bcd65795c91a7e27714216f576..10c63083ece212b9f78515f724284c84bfc3bafc 100644
--- a/chrome/browser/resources/chromeos/wallpaper_manager/manifest.json
+++ b/chrome/browser/resources/chromeos/wallpaper_manager/manifest.json
@@ -2,29 +2,20 @@
// chrome-extension://obklkkbkpaoaejdabbfldmcfplpdgolj/
"key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC6czTauf4/ISarT2JOcjcanIq+kcL/2UOF56QqXNT6PFgEwBG1i9Tfw/dTE59qWdGuxWt4yQlChewOFaRP3nb9AygPFXO31pNXaCY9xyDsjE5RhVvVB0GJa3VHFITIROpBSJHXNOqZBm706A8SFCTauasdWPFSE6Y7sA13t1P0MwIDAQAB",
"name": "Wallpaper Picker",
- "version": "0.1",
+ // Updates version to 0.2 for v2 version wallpaper picker. Otherwise the event
+ // listener can not register appropriately. See crbug/157717.
+ "version": "0.2",
"manifest_version": 2,
"description": "An experimental wallpaper picker UI",
- "chrome_url_overrides": {
- "wallpapers": "main.html"
- },
"permissions": [
"wallpaperPrivate",
- "tabs",
- "webRequest",
- "http://lh5.ggpht.com/",
"https://commondatastorage.googleapis.com/",
"https://storage.googleapis.com/"
],
"app": {
- "launch": {
- "container": "panel",
- "width": 550,
- "height": 440,
- "local_path": "main.html"
+ "background": {
+ "scripts": ["js/event_page.js"]
}
},
- "content_security_policy":
- "default-src:none; object-src 'none'; script-src 'self'",
"display_in_launcher": false
}

Powered by Google App Engine
This is Rietveld 408576698