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

Unified 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: 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 side-by-side diff with in-line comments
Download patch
Index: chrome/test/data/extensions/extension_api_unittest/api_features.json
diff --git a/chrome/test/data/extensions/extension_api_unittest/api_features.json b/chrome/test/data/extensions/extension_api_unittest/api_features.json
new file mode 100644
index 0000000000000000000000000000000000000000..5899c202c9c07faa4e7f62e84c839538117842a8
--- /dev/null
+++ b/chrome/test/data/extensions/extension_api_unittest/api_features.json
@@ -0,0 +1,38 @@
+{
+ "test1": {
+ "extension_types": ["extension"],
+ "contexts": ["content_script"]
+ },
+ "test2": {
+ "extension_types": ["extension"],
+ "contexts": ["blessed_extension"]
+ },
+ "test3": {
+ "extension_types": ["extension"],
+ "contexts": ["content_script", "blessed_extension"]
+ },
+ "test4": {
+ "extension_types": ["extension"],
+ "contexts": ["blessed_extension"]
+ },
+ "test4.foo": {
+ "extension_types": ["extension"],
+ "contexts": ["content_script", "blessed_extension"]
+ },
not at google - send to devlin 2013/03/26 00:34:48 it would also be good to test just ['content_scrip
cduvall 2013/03/26 19:24:05 Done.
+ "test4.bar": {
+ "extension_types": ["extension"],
+ "dependencies": ["api:test4.foo"]
+ },
+ "test5": {
+ "extension_types": ["extension"],
+ "contexts": ["blessed_extension"]
+ },
+ "test5.foo": {
+ "extension_types": ["extension"],
+ "dependencies": ["test2:monkey"]
+ },
+ "test5.bar": {
+ "extension_types": ["extension"],
+ "dependencies": ["api:test5.foo"]
+ }
not at google - send to devlin 2013/03/26 00:34:48 some more tests: - matches - how it interacts with
cduvall 2013/03/26 19:24:05 Done.
+}

Powered by Google App Engine
This is Rietveld 408576698