Reviewed by Darin Fisher.
https://bugs.webkit.org/show_bug.cgi?id=25966
Remove redudant member from Chromium's ResourceRequest. We already
have this data in the cross-platform ResourceRequestBase. Also, rename
ChromiumBridge parameter to be consistant with the new name for this
piece of data.
* platform/chromium/ChromiumBridge.h:
* platform/network/chromium/ResourceRequest.h:
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@44065
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2009-05-22 Adam Barth <abarth@webkit.org>
+
+ Reviewed by Darin Fisher.
+
+ https://bugs.webkit.org/show_bug.cgi?id=25966
+
+ Remove redudant member from Chromium's ResourceRequest. We already
+ have this data in the cross-platform ResourceRequestBase. Also, rename
+ ChromiumBridge parameter to be consistant with the new name for this
+ piece of data.
+
+ * platform/chromium/ChromiumBridge.h:
+ * platform/network/chromium/ResourceRequest.h:
+
2009-05-22 Kevin Watters <kevinwatters@gmail.com>
Reviewed by Kevin Ollivier.
static void clipboardWriteImage(const NativeImageSkia*, const KURL&, const String&);
// Cookies ------------------------------------------------------------
- static void setCookies(const KURL& url, const KURL& policyURL, const String& value);
- static String cookies(const KURL& url, const KURL& policyURL);
+ static void setCookies(const KURL& url, const KURL& firstPartyForCookies, const String& value);
+ static String cookies(const KURL& url, const KURL& firstPartyForCookies);
// DNS ----------------------------------------------------------------
static void prefetchDNS(const String& hostname);
TargetType targetType() const { return m_targetType; }
void setTargetType(TargetType type) { m_targetType = type; }
- // The document's policy base url.
- KURL policyURL() const { return m_policyURL; }
- void setPolicyURL(const KURL& policyURL) { m_policyURL = policyURL; }
-
// The process id of the process from which this request originated. In
// the case of out-of-process plugins, this allows to link back the
// request to the plugin process (as it is processed through a render
int m_appCacheContextID;
TargetType m_targetType;
CString m_securityInfo;
- KURL m_policyURL;
};
} // namespace WebCore