Index: chrome/browser/extensions/data_deleter.cc |
diff --git a/chrome/browser/extensions/data_deleter.cc b/chrome/browser/extensions/data_deleter.cc |
index 9d8ffb715a1881bcb3b1ff434d8c97ddfa6c7f51..b28e7b29711d73fd763fcd5175fc18b4cdc32e15 100644 |
--- a/chrome/browser/extensions/data_deleter.cc |
+++ b/chrome/browser/extensions/data_deleter.cc |
@@ -53,8 +53,7 @@ void DeleteOrigin(Profile* profile, |
// simpler than special casing. This code should go away once we merge |
// the various URLRequestContexts (http://crbug.com/159193). |
partition->ClearDataForOrigin( |
- StoragePartition::REMOVE_DATA_MASK_ALL & |
- (~StoragePartition::REMOVE_DATA_MASK_SHADER_CACHE), |
+ ~StoragePartition::REMOVE_DATA_MASK_SHADER_CACHE, |
StoragePartition::QUOTA_MANAGED_STORAGE_MASK_ALL, |
origin, |
profile->GetRequestContextForExtensions()); |
@@ -62,8 +61,7 @@ void DeleteOrigin(Profile* profile, |
// We don't need to worry about the media request context because that |
// shares the same cookie store as the main request context. |
partition->ClearDataForOrigin( |
- StoragePartition::REMOVE_DATA_MASK_ALL & |
- (~StoragePartition::REMOVE_DATA_MASK_SHADER_CACHE), |
+ ~StoragePartition::REMOVE_DATA_MASK_SHADER_CACHE, |
StoragePartition::QUOTA_MANAGED_STORAGE_MASK_ALL, |
origin, |
partition->GetURLRequestContext()); |