#ifndef CONTENT_PUBLIC_BROWSER_LOAD_FROM_MEMORY_CACHE_DETAILS_H_
#define CONTENT_PUBLIC_BROWSER_LOAD_FROM_MEMORY_CACHE_DETAILS_H_
#include <string>
#include "base/basictypes.h"
#include "net/cert/cert_status_flags.h"
#include "url/gurl.h"
#include "webkit/common/resource_type.h"
namespace content {
struct LoadFromMemoryCacheDetails {
LoadFromMemoryCacheDetails(const GURL& url,
int pid,
int cert_id,
net::CertStatus cert_status,
const std::string& http_method,
const std::string& mime_type,
ResourceType::Type resource_type);
~LoadFromMemoryCacheDetails();
GURL url;
int pid;
int cert_id;
net::CertStatus cert_status;
std::string http_method;
std::string mime_type;
ResourceType::Type resource_type;
};
}
#endif