Chromium Code Reviews| Index: net/url_request/url_request_context.h |
| diff --git a/net/url_request/url_request_context.h b/net/url_request/url_request_context.h |
| index be8214b9b7267ea34ca77e0d4f4e814eae6d643f..38635405e5e1124ddaef2830c89812787dbb966b 100644 |
| --- a/net/url_request/url_request_context.h |
| +++ b/net/url_request/url_request_context.h |
| @@ -22,6 +22,7 @@ |
| #include "net/base/transport_security_state.h" |
| #include "net/http/http_server_properties.h" |
| #include "net/ftp/ftp_auth_cache.h" |
| +#include "net/url_request/url_request.h" |
|
erikwright (departed)
2012/08/24 08:02:55
forward decl instead.
shalev
2012/08/24 15:36:40
How do I forward declare URLRequest::Delegate?
mmenke
2012/08/24 15:39:09
You can't forward declare inner classes, unfortuna
|
| namespace net { |
| class CertVerifier; |
| @@ -51,6 +52,9 @@ class NET_EXPORT URLRequestContext |
| // Copies the state from |other| into this context. |
| void CopyFrom(const URLRequestContext* other); |
| + URLRequest* CreateRequest( |
| + const GURL& url, URLRequest::Delegate* delegate) const; |
| + |
| NetLog* net_log() const { |
| return net_log_; |
| } |