summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpaulmeyer <paulmeyer@chromium.org>2015-04-16 13:52:37 -0700
committerCommit bot <commit-bot@chromium.org>2015-04-16 20:52:58 +0000
commit3206b332448cebf3f665d14f2e7f8962a699e515 (patch)
tree3cb47e8222a0b349ff65039fbdc1dc99024a1183
parent2cc373d6b2ad69b148aac9beed6874b9c8f606a5 (diff)
downloadchromium_src-3206b332448cebf3f665d14f2e7f8962a699e515.zip
chromium_src-3206b332448cebf3f665d14f2e7f8962a699e515.tar.gz
chromium_src-3206b332448cebf3f665d14f2e7f8962a699e515.tar.bz2
Updated the webview.clearData() documentation to include the options to clear the cache.
BUG=477556 Review URL: https://codereview.chromium.org/1081073004 Cr-Commit-Position: refs/heads/master@{#325510}
-rw-r--r--chrome/common/extensions/api/webview_tag.json3
1 files changed, 2 insertions, 1 deletions
diff --git a/chrome/common/extensions/api/webview_tag.json b/chrome/common/extensions/api/webview_tag.json
index a55c13a..c179966 100644
--- a/chrome/common/extensions/api/webview_tag.json
+++ b/chrome/common/extensions/api/webview_tag.json
@@ -30,6 +30,7 @@
"description": "A set of data types. Missing properties are interpreted as <code>false</code>.",
"properties": {
"appcache": { "type": "boolean", "optional": true, "description": "Websites' appcaches." },
+ "cache": { "type": "boolean", "optional": true, "description": "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." },
"fileSystems": { "type": "boolean", "optional": true, "description": "Websites' filesystems." },
"indexedDB": { "type": "boolean", "optional": true, "description": "Websites' IndexedDB data." },
@@ -359,7 +360,7 @@
{
"name": "options",
"$ref": "ClearDataOptions",
- "description": "Options determining exactly what data to clear."
+ "description": "Options determining which data to clear."
},
{
"name": "types",