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

Unified Diff: chrome/common/extensions/api/webview_tag.json

Issue 2700473003: Support the removal of only session cookies or persistent cookies (Closed)
Patch Set: adding comment Created 3 years, 10 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/common/extensions/api/webview_tag.json
diff --git a/chrome/common/extensions/api/webview_tag.json b/chrome/common/extensions/api/webview_tag.json
index 0263954cd0eb1cfe9f43135dc14f55c2f48b6afb..7692c7a6188a22098b722afee4f77fbee48a0a7a 100644
--- a/chrome/common/extensions/api/webview_tag.json
+++ b/chrome/common/extensions/api/webview_tag.json
@@ -32,6 +32,8 @@
"appcache": { "type": "boolean", "optional": true, "description": "Websites' appcaches." },
"cache": { "type": "boolean", "optional": true, "description": "Since Chrome 43.<br>The browser's cache. Note: when removing data, this clears the entire cache; it is not limited to the range you specify." },
"cookies": { "type": "boolean", "optional": true, "description": "The partition's cookies." },
+ "sessionCookies": { "type": "boolean", "optional": true, "description": "The partition's session cookies." },
+ "persistentCookies": { "type": "boolean", "optional": true, "description": "The partition's persistent cookies." },
"fileSystems": { "type": "boolean", "optional": true, "description": "Websites' filesystems." },
"indexedDB": { "type": "boolean", "optional": true, "description": "Websites' IndexedDB data." },
"localStorage": { "type": "boolean", "optional": true, "description": "Websites' local storage data." },

Powered by Google App Engine
This is Rietveld 408576698