Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(511)

Unified Diff: platform/network/chromium/ResourceRequest.h

Issue 113554: For local review prior to sending to webkit (Closed) Base URL: http://svn.webkit.org/repository/webkit/trunk/WebCore/
Patch Set: '' Created 11 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « platform/network/ResourceResponseBase.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: platform/network/chromium/ResourceRequest.h
===================================================================
--- platform/network/chromium/ResourceRequest.h (revision 44202)
+++ platform/network/chromium/ResourceRequest.h (working copy)
@@ -49,7 +49,6 @@
: ResourceRequestBase(KURL(url), UseProtocolCachePolicy)
, m_requestorID(0)
, m_requestorProcessID(0)
- , m_appCacheContextID(0)
, m_targetType(TargetIsSubResource)
{
}
@@ -58,7 +57,6 @@
: ResourceRequestBase(url, UseProtocolCachePolicy)
, m_requestorID(0)
, m_requestorProcessID(0)
- , m_appCacheContextID(0)
, m_targetType(TargetIsSubResource)
, m_securityInfo(securityInfo)
{
@@ -68,7 +66,6 @@
: ResourceRequestBase(url, UseProtocolCachePolicy)
, m_requestorID(0)
, m_requestorProcessID(0)
- , m_appCacheContextID(0)
, m_targetType(TargetIsSubResource)
{
}
@@ -77,7 +74,6 @@
: ResourceRequestBase(url, policy)
, m_requestorID(0)
, m_requestorProcessID(0)
- , m_appCacheContextID(0)
, m_targetType(TargetIsSubResource)
{
setHTTPReferrer(referrer);
@@ -87,7 +83,6 @@
: ResourceRequestBase(KURL(), UseProtocolCachePolicy)
, m_requestorID(0)
, m_requestorProcessID(0)
- , m_appCacheContextID(0)
, m_targetType(TargetIsSubResource)
{
}
@@ -107,10 +102,6 @@
int requestorProcessID() const { return m_requestorProcessID; }
void setRequestorProcessID(int requestorProcessID) { m_requestorProcessID = requestorProcessID; }
- // Allows the request to be matched up with its app cache context.
- int appCacheContextID() const { return m_appCacheContextID; }
- void setAppCacheContextID(int id) { m_appCacheContextID = id; }
-
// Opaque buffer that describes the security state (including SSL
// connection state) for the resource that should be reported when the
// resource has been loaded. This is used to simulate secure
@@ -128,7 +119,6 @@
int m_requestorID;
int m_requestorProcessID;
- int m_appCacheContextID;
TargetType m_targetType;
CString m_securityInfo;
};
« no previous file with comments | « platform/network/ResourceResponseBase.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698