Index: webkit/common/quota/quota_types.h |
diff --git a/webkit/common/quota/quota_types.h b/webkit/common/quota/quota_types.h |
index 6cb45c9d7f8488cd2b2a9853a9a16cf0b3612ce5..ddccaf4fc60013945e0583c7c3e1359d744266e6 100644 |
--- a/webkit/common/quota/quota_types.h |
+++ b/webkit/common/quota/quota_types.h |
@@ -5,7 +5,9 @@ |
#ifndef WEBKIT_COMMON_QUOTA_QUOTA_TYPES_H_ |
#define WEBKIT_COMMON_QUOTA_QUOTA_TYPES_H_ |
+#include "url/gurl.h" |
#include "webkit/common/quota/quota_status_code.h" |
+#include "webkit/common/webkit_storage_common_export.h" |
namespace quota { |
@@ -23,6 +25,18 @@ enum QuotaLimitType { |
kQuotaLimitTypeUnlimited, |
}; |
+struct WEBKIT_STORAGE_COMMON_EXPORT RequestStorageQuotaParams { |
+ RequestStorageQuotaParams(); |
+ ~RequestStorageQuotaParams(); |
+ |
+ int render_view_id; |
+ int request_id; |
+ GURL origin_url; |
+ quota::StorageType storage_type; |
+ uint64 requested_size; |
+ bool user_gesture; |
+}; |
+ |
} // namespace quota |
#endif // WEBKIT_COMMON_QUOTA_QUOTA_TYPES_H_ |