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

Unified Diff: content/common/net/url_fetcher_impl.h

Issue 9572001: Do cookie checks in NetworkDelegate instead of the URLRequest::Delegate. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: TestShellNetworkDelegate Created 8 years, 10 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
Index: content/common/net/url_fetcher_impl.h
diff --git a/content/common/net/url_fetcher_impl.h b/content/common/net/url_fetcher_impl.h
index 1ba8b536f15a957cb3fdc8225305f726d26d5fbc..76f9add2e3a3320d0feab4281263e28ea92a4cf2 100644
--- a/content/common/net/url_fetcher_impl.h
+++ b/content/common/net/url_fetcher_impl.h
@@ -51,6 +51,7 @@ class CONTENT_EXPORT URLFetcherImpl : public content::URLFetcher{
net::HttpRequestHeaders* headers) OVERRIDE;
virtual void SetRequestContext(
net::URLRequestContextGetter* request_context_getter) OVERRIDE;
+ virtual void AssociateWithRenderView(int process_id, int routing_id) OVERRIDE;
virtual void SetAutomaticallyRetryOn5xx(bool retry) OVERRIDE;
virtual void SetMaxRetries(int max_retries) OVERRIDE;
virtual int GetMaxRetries() const OVERRIDE;
@@ -61,8 +62,6 @@ class CONTENT_EXPORT URLFetcherImpl : public content::URLFetcher{
virtual net::HostPortPair GetSocketAddress() const OVERRIDE;
virtual bool WasFetchedViaProxy() const OVERRIDE;
virtual void Start() OVERRIDE;
- virtual void StartWithRequestContextGetter(
- net::URLRequestContextGetter* request_context_getter) OVERRIDE;
virtual const GURL& GetOriginalURL() const OVERRIDE;
virtual const GURL& GetURL() const OVERRIDE;
virtual const net::URLRequestStatus& GetStatus() const OVERRIDE;

Powered by Google App Engine
This is Rietveld 408576698