Index: chrome/browser/browsing_data/browsing_data_remover.h |
diff --git a/chrome/browser/browsing_data/browsing_data_remover.h b/chrome/browser/browsing_data/browsing_data_remover.h |
index b2623cb9a59b2e54b7bc3ac421163cd52b758931..b6dbb185817e3911d5ad7db3f0322f76c0e65d9a 100644 |
--- a/chrome/browser/browsing_data/browsing_data_remover.h |
+++ b/chrome/browser/browsing_data/browsing_data_remover.h |
@@ -81,18 +81,20 @@ class BrowsingDataRemover |
// from deleting history or downloads. |
REMOVE_NOCHECKS = 1 << 16, |
REMOVE_WEBRTC_IDENTITY = 1 << 17, |
+ REMOVE_CACHE_STORAGE = 1 << 18, |
// The following flag is used only in tests. In normal usage, hosted app |
// data is controlled by the REMOVE_COOKIES flag, applied to the |
// protected-web origin. |
REMOVE_HOSTED_APP_DATA_TESTONLY = 1 << 31, |
// "Site data" includes cookies, appcache, file systems, indexedDBs, local |
- // storage, webSQL, service workers, and plugin data. |
+ // storage, webSQL, service workers, cache storage, and plugin data. |
REMOVE_SITE_DATA = REMOVE_APPCACHE | REMOVE_COOKIES | REMOVE_FILE_SYSTEMS | |
REMOVE_INDEXEDDB | |
REMOVE_LOCAL_STORAGE | |
REMOVE_PLUGIN_DATA | |
REMOVE_SERVICE_WORKERS | |
+ REMOVE_CACHE_STORAGE | |
REMOVE_WEBSQL | |
REMOVE_CHANNEL_IDS | |
REMOVE_SITE_USAGE_DATA | |