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

Unified Diff: content/browser/net/view_http_cache_job_factory.h

Issue 10855209: Refactoring: ProtocolHandler::MaybeCreateJob takes NetworkDelegate as argument (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Latest merge Created 8 years, 4 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/browser/net/view_http_cache_job_factory.h
diff --git a/content/browser/net/view_http_cache_job_factory.h b/content/browser/net/view_http_cache_job_factory.h
index abd577776f471cd8e19f2cbe9c8f21b3002d8c2d..88c84da336f0fd548a23b10aa827e62003e98a83 100644
--- a/content/browser/net/view_http_cache_job_factory.h
+++ b/content/browser/net/view_http_cache_job_factory.h
@@ -6,6 +6,7 @@
#define CONTENT_BROWSER_NET_VIEW_HTTP_CACHE_JOB_FACTORY_H_
namespace net {
+class NetworkDelegate;
class URLRequest;
class URLRequestJob;
} // namespace net
@@ -15,7 +16,8 @@ class GURL;
class ViewHttpCacheJobFactory {
public:
static bool IsSupportedURL(const GURL& url);
- static net::URLRequestJob* CreateJobForRequest(net::URLRequest* request);
+ static net::URLRequestJob* CreateJobForRequest(
+ net::URLRequest* request, net::NetworkDelegate* network_delegate);
};
#endif // CONTENT_BROWSER_NET_VIEW_HTTP_CACHE_JOB_FACTORY_H_
« no previous file with comments | « content/browser/net/view_blob_internals_job_factory.cc ('k') | content/browser/net/view_http_cache_job_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698