Chromium Code Reviews| 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..65850ca62a2349d0f5fe79370d4e4756b39bf796 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"] |
| + }, |
| + "empty_session_types": { |
| + "channel": "stable", |
| + "contexts": ["content_script", "blessed_extension", "unblessed_extension"], |
| + "session_types": [] |
| + }, |
| + "all_session_types": { |
|
Devlin
2016/08/23 20:49:06
"all" is doomed to be obsoleted, unless it uses "a
tbarzic
2016/09/08 18:48:55
yeah, I agree, fixed
|
| + "channel": "stable", |
| + "contexts": ["content_script", "blessed_extension", "unblessed_extension"], |
| + "session_types": ["kiosk", "regular"] |
|
Devlin
2016/08/23 20:49:06
How would one specify "unknown"?
tbarzic
2016/09/08 18:48:54
it's not possible, by design - "unknown" session t
|
| } |
| } |