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

Unified Diff: chrome/test/data/extensions/api_test/notification/galore/app/manifest.json

Issue 12211020: Added "Notifications Galore!" notification test app. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed copyright message for commit checks. Created 7 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: chrome/test/data/extensions/api_test/notification/galore/app/manifest.json
diff --git a/chrome/test/data/extensions/api_test/notification/galore/app/manifest.json b/chrome/test/data/extensions/api_test/notification/galore/app/manifest.json
new file mode 100644
index 0000000000000000000000000000000000000000..de2c5a8bc1cb551f58a1c2627db6ccbbe3c175fb
--- /dev/null
+++ b/chrome/test/data/extensions/api_test/notification/galore/app/manifest.json
@@ -0,0 +1,18 @@
+{
+ "name": "Notifications Galore!",
+ "description": "A testbed for Chrome notifications",
+ "version": "0.7",
+ "manifest_version": 2,
+ "minimum_chrome_version": "23",
+ "app": {
+ "background": {
+ "scripts": ["model.js", "view.js", "controller.js", "main.js"]
+ }
+ },
+ "icons": {
+ "16": "images/icon-16x16.png",
+ "48": "images/icon-48x48.png",
+ "128": "images/icon-128x128.png"
+ },
+ "permissions": ["experimental"]
+}

Powered by Google App Engine
This is Rietveld 408576698