#ifndef CONTENT_PUBLIC_COMMON_STORAGE_QUOTA_PARAMS_H_
#define CONTENT_PUBLIC_COMMON_STORAGE_QUOTA_PARAMS_H_
#include "content/common/content_export.h"
#include "ipc/ipc_message.h"
#include "url/gurl.h"
#include "webkit/common/quota/quota_types.h"
namespace content {
struct CONTENT_EXPORT StorageQuotaParams {
StorageQuotaParams()
: render_view_id(MSG_ROUTING_NONE),
request_id(-1),
storage_type(quota::kStorageTypeTemporary),
requested_size(0),
user_gesture(false) {}
int render_view_id;
int request_id;
GURL origin_url;
quota::StorageType storage_type;
uint64 requested_size;
bool user_gesture;
};
}
#endif