Chromium Code Reviews| 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 { |
|
kinuko
2014/03/04 01:55:40
It feels having this in content/common/quota is mo
Greg Billock
2014/03/04 18:49:37
So in the messages file itself? I can do that.
kinuko
2014/03/05 01:07:35
I meant another file in content/common, but the cu
Greg Billock
2014/03/05 18:20:31
Done. I'll leave it here, then, esp. if these are
|
| + RequestStorageQuotaParams(); |
| + ~RequestStorageQuotaParams(); |
| + |
| + int render_view_id; |
|
kinuko
2014/03/04 01:49:09
Strictly speaking referring render_view_id in webk
Greg Billock
2014/03/04 18:49:37
ok.
|
| + int request_id; |
| + GURL origin_url; |
| + quota::StorageType storage_type; |
|
kinuko
2014/03/04 01:49:09
nit: no need of quota:: here
Greg Billock
2014/03/04 18:49:37
Done.
|
| + uint64 requested_size; |
| + bool user_gesture; |
|
kinuko
2014/03/04 01:55:40
It's not obvious what does this flag means here--
Greg Billock
2014/03/04 18:49:37
Basically that the message originated in the conte
|
| +}; |
| + |
| } // namespace quota |
| #endif // WEBKIT_COMMON_QUOTA_QUOTA_TYPES_H_ |