| Index: content/browser/storage_partition_impl.cc
|
| diff --git a/content/browser/storage_partition_impl.cc b/content/browser/storage_partition_impl.cc
|
| index 1e262553c703d7a880710e853456630b1721cada..7a76e695b17002d5078c37e977e12526db96546a 100644
|
| --- a/content/browser/storage_partition_impl.cc
|
| +++ b/content/browser/storage_partition_impl.cc
|
| @@ -233,8 +233,11 @@ int StoragePartitionImpl::GenerateQuotaClientMask(uint32 remove_mask) {
|
| quota_client_mask |= storage::QuotaClient::kAppcache;
|
| if (remove_mask & StoragePartition::REMOVE_DATA_MASK_INDEXEDDB)
|
| quota_client_mask |= storage::QuotaClient::kIndexedDatabase;
|
| - if (remove_mask & StoragePartition::REMOVE_DATA_MASK_SERVICE_WORKERS)
|
| + if (remove_mask & StoragePartition::REMOVE_DATA_MASK_SERVICE_WORKERS) {
|
| quota_client_mask |= storage::QuotaClient::kServiceWorker;
|
| + quota_client_mask |= storage::QuotaClient::kServiceWorkerCache;
|
| + }
|
| +
|
|
|
| return quota_client_mask;
|
| }
|
|
|