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

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

Issue 377753003: Remove GetContexts() from the public interface of extensions::Feature. It was (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 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
1 { 1 {
2 "test1": { 2 "test1": {
3 "channel": "trunk", 3 "channel": "trunk",
4 "contexts": ["content_script"] 4 "contexts": ["content_script"]
5 }, 5 },
6 "test1.foo": { 6 "test1.foo": {
7 "channel": "trunk", 7 "channel": "trunk",
8 "contexts": ["blessed_extension"] 8 "contexts": ["blessed_extension"]
9 }, 9 },
10 "test2": { 10 "test2": {
11 "contexts": ["blessed_extension"], 11 "channel": "trunk",
12 "dependencies": ["api:test1"] 12 "contexts": ["blessed_extension"]
not at google - send to devlin 2014/07/07 22:25:05 the dependencies are broken, and I will fix these
13 }, 13 },
14 "test2.foo": { 14 "test2.foo": {
15 "channel": "trunk", 15 "channel": "trunk",
16 "contexts": ["content_script"] 16 "contexts": ["content_script"]
17 }, 17 },
18 "test2.bar": { 18 "test2.bar": {
19 "channel": "trunk", 19 "channel": "trunk",
20 "contexts": ["content_script", "blessed_extension"] 20 "contexts": ["content_script", "blessed_extension"]
21 }, 21 },
22 "test2.baz": { 22 "test2.baz": {
23 "contexts": ["blessed_extension"], 23 "channel": "trunk",
24 "dependencies": ["api:test2.foo"] 24 "contexts": ["blessed_extension"]
25 }, 25 },
26 "test3": { 26 "test3": {
27 "channel": "trunk", 27 "channel": "trunk",
28 "contexts": ["content_script", "blessed_extension"] 28 "contexts": ["content_script", "blessed_extension"]
29 }, 29 },
30 "test3.foo": { 30 "test3.foo": {
31 "channel": "trunk", 31 "channel": "trunk",
32 "contexts": ["blessed_extension"] 32 "contexts": ["blessed_extension"]
33 }, 33 },
34 "test4": { 34 "test4": {
35 "contexts": ["content_script"], 35 "channel": "trunk",
36 "dependencies": ["api:test1.foo"] 36 "contexts": ["web_page"],
37 "matches": ["<all_urls>"]
38 },
39 "test5": {
40 "channel": "trunk",
41 "contexts": ["blessed_web_page"]
37 } 42 }
38 } 43 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698