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

Side by Side Diff: chrome/test/data/extensions/extension_api_unittest/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: fixed memory leak Created 7 years, 8 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", "blessed_extension", "unblessed_extension"]
4 },
5 "test2": {
6 "contexts": ["web_page"],
7 "matches": ["<all_urls>"]
8 },
9 "test2.foo": {
10 "contexts": ["content_script"]
11 },
12 "test3": {
13 "contexts": ["content_script"]
14 },
15 "test3.foo": {
16 "contexts": ["web_page", "blessed_extension"],
17 "matches": ["<all_urls>"]
18 },
19 "test4": {
20 "contexts": ["blessed_extension"],
21 "dependencies": ["api:test3.foo"]
22 },
23 "test4.foo": {
24 "contexts": ["unblessed_extension"],
25 "dependencies": ["api:test4"]
26 },
27 "test4.foo.foo": {
28 "contexts": ["content_script"]
29 },
30 "test5": {
31 "contexts": ["web_page"],
32 "matches": ["http://foo.com/*"]
33 },
34 "test6": {
35 "contexts": ["content_script"]
36 },
37 "test6.foo": {
38 "contexts": ["blessed_extension"]
39 },
40 "test7": {
41 "contexts": ["web_page"],
42 "matches": ["http://foo.com/*"]
43 },
44 "test7.foo": {
45 "contexts": ["web_page"],
46 "matches": ["<all_urls>"],
47 "dependencies": ["test7"]
48 },
49 "test7.bar": {
50 "contexts": ["web_page"],
51 "matches": ["http://bar.com/*"],
52 "dependencies": ["test7.foo"]
53 }
54 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698