Index: chrome/browser/android/preferences/website_preference_bridge.cc |
diff --git a/chrome/browser/android/preferences/website_preference_bridge.cc b/chrome/browser/android/preferences/website_preference_bridge.cc |
index 4732fbf203392a459bd19a7c2dcd31bb675cd54c..24095c8cd02ec7da4901bbed7bb9c0597c720053 100644 |
--- a/chrome/browser/android/preferences/website_preference_bridge.cc |
+++ b/chrome/browser/android/preferences/website_preference_bridge.cc |
@@ -481,6 +481,8 @@ class SiteDataDeleteHelper : |
storage_partition->GetIndexedDBContext(); |
content::ServiceWorkerContext* service_worker_context = |
storage_partition->GetServiceWorkerContext(); |
+ content::CacheStorageContext* cache_storage_context = |
+ storage_partition->GetCacheStorageContext(); |
storage::FileSystemContext* file_system_context = |
storage_partition->GetFileSystemContext(); |
LocalDataContainer* container = new LocalDataContainer( |
@@ -494,6 +496,7 @@ class SiteDataDeleteHelper : |
BrowsingDataQuotaHelper::Create(profile_), |
BrowsingDataChannelIDHelper::Create(profile_->GetRequestContext()), |
new BrowsingDataServiceWorkerHelper(service_worker_context), |
+ new BrowsingDataCacheStorageHelper(cache_storage_context), |
NULL); |
cookies_tree_model_.reset(new CookiesTreeModel( |