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

Side by Side Diff: chrome/test/data/extensions/extension_api_unittest/privileged_api_features.json

Issue 12846011: Implement API features for the Extension API feature system (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: tests and comments Created 7 years, 9 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 "test1": {
3 "contexts": ["content_script"]
4 },
5 "test1.foo": {
6 "contexts": ["blessed_extension"]
7 },
8 "test2": {
9 "contexts": ["blessed_extension"]
10 },
11 "test3": {
12 "contexts": ["content_script", "blessed_extension"]
13 },
14 "test4": {
15 "contexts": ["blessed_extension"]
16 },
17 "test4.foo": {
18 "contexts": ["content_script", "blessed_extension"]
19 },
20 "test4.bar": {
21 "dependencies": ["api:test4.foo"]
22 },
23 "test4.baz": {
24 "contexts": ["content_script"]
25 },
26 "test5": {
27 "contexts": ["blessed_extension"]
28 },
29 "test5.foo": {
30 "dependencies": ["test2:monkey"]
31 },
32 "test5.bar": {
33 "dependencies": ["api:test5.foo"]
34 },
35 "test5.bar.foo": {
36 "dependencies": ["api:test5.bar"]
37 }
38 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698