Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1566)

Unified Diff: content/browser/storage_partition_impl.cc

Issue 385443002: Fixes for re-enabling more MSVC level 4 warnings: misc edition #1 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Build fix, take 3 Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/extensions/data_deleter.cc ('k') | content/browser/storage_partition_impl_map.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/storage_partition_impl.cc
diff --git a/content/browser/storage_partition_impl.cc b/content/browser/storage_partition_impl.cc
index 9a876b5cff845158f960c97d9c6f1d0618f0f995..13b36f5f6c213c57bf33b2fa8fdc2ee8d7be96d4 100644
--- a/content/browser/storage_partition_impl.cc
+++ b/content/browser/storage_partition_impl.cc
@@ -191,6 +191,21 @@ void ClearSessionStorageOnUIThread(
} // namespace
+// static
+const uint32 StoragePartition::REMOVE_DATA_MASK_APPCACHE = 1 << 0;
+const uint32 StoragePartition::REMOVE_DATA_MASK_COOKIES = 1 << 1;
+const uint32 StoragePartition::REMOVE_DATA_MASK_FILE_SYSTEMS = 1 << 2;
+const uint32 StoragePartition::REMOVE_DATA_MASK_INDEXEDDB = 1 << 3;
+const uint32 StoragePartition::REMOVE_DATA_MASK_LOCAL_STORAGE = 1 << 4;
+const uint32 StoragePartition::REMOVE_DATA_MASK_SHADER_CACHE = 1 << 5;
+const uint32 StoragePartition::REMOVE_DATA_MASK_WEBSQL = 1 << 6;
+const uint32 StoragePartition::REMOVE_DATA_MASK_WEBRTC_IDENTITY = 1 << 7;
+const uint32 StoragePartition::REMOVE_DATA_MASK_ALL = 0xFFFFFFFF;
+const uint32 StoragePartition::QUOTA_MANAGED_STORAGE_MASK_TEMPORARY = 1 << 0;
+const uint32 StoragePartition::QUOTA_MANAGED_STORAGE_MASK_PERSISTENT = 1 << 1;
+const uint32 StoragePartition::QUOTA_MANAGED_STORAGE_MASK_SYNCABLE = 1 << 2;
+const uint32 StoragePartition::QUOTA_MANAGED_STORAGE_MASK_ALL = 0xFFFFFFFF;
+
// Static.
int StoragePartitionImpl::GenerateQuotaClientMask(uint32 remove_mask) {
int quota_client_mask = 0;
« no previous file with comments | « chrome/browser/extensions/data_deleter.cc ('k') | content/browser/storage_partition_impl_map.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698