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

Unified Diff: chrome/test/data/extensions/api_test/notification_provider/test_app/manifest.json

Issue 461403005: add a test app using notification provider API (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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 side-by-side diff with in-line comments
Download patch
Index: chrome/test/data/extensions/api_test/notification_provider/test_app/manifest.json
diff --git a/chrome/test/data/extensions/api_test/notification_provider/test_app/manifest.json b/chrome/test/data/extensions/api_test/notification_provider/test_app/manifest.json
new file mode 100644
index 0000000000000000000000000000000000000000..a56a998eb5439632c1047a1d47a2218cc316b7a8
--- /dev/null
+++ b/chrome/test/data/extensions/api_test/notification_provider/test_app/manifest.json
@@ -0,0 +1,14 @@
+{
+ "name": "New API Notification Provider Test",
+ "description": "Tests the notificationProvider API",
+ "manifest_version" : 2,
+ "version" : "0.3.1",
Pete Williamson 2014/08/14 00:07:55 Just curious - why 0.3.1?
liyanhou 2014/08/14 00:41:50 Sorry I copied it from somewhere else when I first
+ "app" : {
+ "background" : {
+ "scripts" : ["app.js"]
+ }
+ },
+ "permissions" : [
+ "notificationProvider"
+ ]
+}

Powered by Google App Engine
This is Rietveld 408576698