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

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

Issue 264923009: Add browser_test for extension app API with missing schema (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase, automation permission Created 6 years, 7 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/stubs_app/manifest.json
diff --git a/chrome/test/data/extensions/api_test/stubs_app/manifest.json b/chrome/test/data/extensions/api_test/stubs_app/manifest.json
new file mode 100644
index 0000000000000000000000000000000000000000..79da327b85c852bc41ac32b2201ae1b1c200ccd5
--- /dev/null
+++ b/chrome/test/data/extensions/api_test/stubs_app/manifest.json
@@ -0,0 +1,45 @@
+{
+ "name": "App Extension API Stubs Test",
+ "version": "1.0",
+ "manifest_version": 2,
+ "app": {
+ "background": {
+ "scripts": ["background.js"]
+ }
+ },
+ "permissions": [
+ "adview",
+ "alarms",
+ "audio",
+ "audioCapture",
+ "clipboardRead",
+ "clipboardWrite",
+ "contextMenus",
+ "desktopCapture",
+ "fileBrowserHandler",
+ {"fileSystem": ["write"]},
+ "gcm",
+ "geolocation",
+ "hid",
+ "identity",
+ "idle",
+ "location",
+ {"mediaGalleries": ["read", "allAutoDetected"]},
+ "nativeMessaging",
+ "notifications",
+ "pointerLock",
+ "power",
+ "pushMessaging",
+ "serial",
+ "signedInDevices",
+ {"socket": ["tcp-connect", "tcp-listen", "udp-send-to", "udp-bind"]},
+ "storage",
+ "tts",
+ "unlimitedStorage",
+ "usb",
+ "videoCapture"
+ ],
+ "bluetooth": {},
+ "commands": {},
+ "sockets": {}
+}
« no previous file with comments | « chrome/test/data/extensions/api_test/stubs_app/background.js ('k') | extensions/common/api/_permission_features.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698