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

Side by Side 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: cleanup 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 {
2 "name": "App Extension API Stubs Test",
3 "version": "1.0",
4 "manifest_version": 2,
5 "app": {
6 "background": {
7 "scripts": ["background.js"]
8 }
9 },
10 "permissions": [
11 "adview",
12 "alarms",
13 "audio",
14 "audioCapture",
15 "automation",
16 "browser",
17 "clipboardRead",
18 "clipboardWrite",
19 "contextMenus",
20 "desktopCapture",
21 "fileBrowserHandler",
22 {"fileSystem": ["write"]},
23 "gcm",
24 "geolocation",
25 "hid",
26 "identity",
27 "idle",
28 "location",
29 {"mediaGalleries": ["read", "allAutoDetected"]},
30 "nativeMessaging",
31 "notifications",
32 "pointerLock",
33 "power",
34 "pushMessaging",
35 "serial",
36 "signedInDevices",
37 {"socket": ["tcp-connect", "tcp-listen", "udp-send-to", "udp-bind"]},
38 "storage",
39 "tts",
40 "unlimitedStorage",
41 "usb",
42 "videoCapture"
not at google - send to devlin 2014/05/03 00:12:43 whee could you also add empty objects for "blueto
43 ]
44 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698