summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--content/common/fileapi/file_system_messages.h2
-rw-r--r--storage/common/quota/quota_types.h1
2 files changed, 2 insertions, 1 deletions
diff --git a/content/common/fileapi/file_system_messages.h b/content/common/fileapi/file_system_messages.h
index b1f7491..5b620b8 100644
--- a/content/common/fileapi/file_system_messages.h
+++ b/content/common/fileapi/file_system_messages.h
@@ -29,7 +29,7 @@ IPC_STRUCT_TRAITS_BEGIN(storage::FileSystemInfo)
IPC_STRUCT_TRAITS_END()
IPC_ENUM_TRAITS(storage::FileSystemType)
-IPC_ENUM_TRAITS(storage::QuotaLimitType)
+IPC_ENUM_TRAITS_MAX_VALUE(storage::QuotaLimitType, storage::kQuotaLimitTypeLast)
// File system messages sent from the browser to the child process.
diff --git a/storage/common/quota/quota_types.h b/storage/common/quota/quota_types.h
index c8087e6..381d847 100644
--- a/storage/common/quota/quota_types.h
+++ b/storage/common/quota/quota_types.h
@@ -22,6 +22,7 @@ enum QuotaLimitType {
kQuotaLimitTypeUnknown,
kQuotaLimitTypeLimited,
kQuotaLimitTypeUnlimited,
+ kQuotaLimitTypeLast = kQuotaLimitTypeUnlimited
};
} // namespace storage