Chromium Code Reviews| 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..78c7437b17cfbfb7a0a7f8193da68b7224dbdd02 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, caches storage, and plugin data. |
|
Bernhard Bauer
2015/08/20 11:18:53
Nit: "cache storage"
jsbell
2015/08/20 19:04:51
Done.
|
| 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 | |