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

Unified Diff: chrome/test/data/extensions/extension_api_unittest/api_features.json

Issue 2255613003: Introduce session type parameter to extension features (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Introduce session type parameter to extension features Created 4 years, 4 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
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
}
}

Powered by Google App Engine
This is Rietveld 408576698