Index: content/public/browser/storage_partition.h |
diff --git a/content/public/browser/storage_partition.h b/content/public/browser/storage_partition.h |
index a8e451c7a44878c0c4076c1c284faa795dce434a..f69feaa3bf8c4b3d6068be075bcba90e2e9701f0 100644 |
--- a/content/public/browser/storage_partition.h |
+++ b/content/public/browser/storage_partition.h |
@@ -68,19 +68,17 @@ class StoragePartition { |
REMOVE_DATA_MASK_ALL = -1 |
}; |
- // TODO(lazyboy): Value in the enum should start with the enum prefix |
- // (QUOTA_MANAGED_STORAGE_MASK_*). |
enum QuotaManagedStorageMask { |
// Corresponds to quota::kStorageTypeTemporary. |
- kQuotaManagedTemporaryStorage = 1 << 0, |
+ QUOTA_MANAGED_STORAGE_MASK_TEMPORARY = 1 << 0, |
// Corresponds to quota::kStorageTypePersistent. |
- kQuotaManagedPersistentStorage = 1 << 1, |
+ QUOTA_MANAGED_STORAGE_MASK_PERSISTENT = 1 << 1, |
// Corresponds to quota::kStorageTypeSyncable. |
- kQuotaManagedSyncableStorage = 1 << 2, |
+ QUOTA_MANAGED_STORAGE_MASK_SYNCABLE = 1 << 2, |
- kAllStorage = -1 |
+ QUOTA_MANAGED_STORAGE_MASK_ALL = -1 |
}; |
// Starts an asynchronous task that does a best-effort clear the data |