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 |
index 1acbea9a025123bcd67e4efe7efcf9de05c1a228..b36aa762dc2eb3edae724cae1be9b4ca344608ab 100644 |
--- a/chrome/test/data/extensions/extension_api_unittest/api_features.json |
+++ b/chrome/test/data/extensions/extension_api_unittest/api_features.json |
@@ -91,5 +91,25 @@ |
"contexts": ["content_script", "blessed_extension", "unblessed_extension"] |
}, |
"parent3.noparent.child": { |
+ }, |
+ "kiosk_only": { |
+ "channel": "stable", |
+ "contexts": ["content_script", "blessed_extension", "unblessed_extension"], |
+ "session_types": ["kiosk"] |
+ }, |
+ "non_kiosk": { |
+ "channel": "stable", |
+ "contexts": ["content_script", "blessed_extension", "unblessed_extension"], |
+ "session_types": ["regular"] |
+ }, |
+ "multiple_session_types": { |
+ "channel": "stable", |
+ "contexts": ["content_script", "blessed_extension", "unblessed_extension"], |
+ "session_types": ["kiosk", "regular"] |
+ }, |
+ "empty_session_types": { |
+ "channel": "stable", |
+ "contexts": ["content_script", "blessed_extension", "unblessed_extension"], |
+ "session_types": [] |
Devlin
2016/09/12 22:33:08
This should be disallowed.
tbarzic
2016/09/12 23:05:10
Done.
|
} |
} |