| Index: net/http/http_stream_factory.h
|
| diff --git a/net/http/http_stream_factory.h b/net/http/http_stream_factory.h
|
| index 3bb6d2fb62001ab6972d05f740b062f180ae1020..97bd79c28c802fc88af15d4408b4517e7a443f57 100644
|
| --- a/net/http/http_stream_factory.h
|
| +++ b/net/http/http_stream_factory.h
|
| @@ -34,35 +34,6 @@ class HttpStreamFactory : public StreamFactory,
|
| HttpStreamFactory();
|
| virtual ~HttpStreamFactory();
|
|
|
| - // StreamFactory Interface
|
| - virtual StreamRequest* RequestStream(const HttpRequestInfo* info,
|
| - SSLConfig* ssl_config,
|
| - ProxyInfo* proxy_info,
|
| - HttpNetworkSession* session,
|
| - StreamRequest::Delegate* delegate,
|
| - const BoundNetLog& net_log);
|
| -
|
| - virtual int PreconnectStreams(int num_streams,
|
| - const HttpRequestInfo* info,
|
| - SSLConfig* ssl_config,
|
| - ProxyInfo* proxy_info,
|
| - HttpNetworkSession* session,
|
| - const BoundNetLog& net_log,
|
| - CompletionCallback* callback);
|
| -
|
| - virtual void AddTLSIntolerantServer(const GURL& url);
|
| - virtual bool IsTLSIntolerantServer(const GURL& url);
|
| -
|
| - virtual void ProcessAlternateProtocol(
|
| - HttpAlternateProtocols* alternate_protocols,
|
| - const std::string& alternate_protocol_str,
|
| - const HostPortPair& http_host_port_pair);
|
| -
|
| - virtual GURL ApplyHostMappingRules(const GURL& url, HostPortPair* endpoint);
|
| -
|
| - // HttpStreamRequest::PreconnectDelegate API
|
| - virtual void OnPreconnectsComplete(HttpStreamRequest* request, int result);
|
| -
|
| // Static settings
|
|
|
| // Turns spdy on or off.
|
| @@ -122,6 +93,31 @@ class HttpStreamFactory : public StreamFactory,
|
|
|
| static void SetHostMappingRules(const std::string& rules);
|
|
|
| + // StreamFactory Interface
|
| + virtual StreamRequest* RequestStream(const HttpRequestInfo* info,
|
| + SSLConfig* ssl_config,
|
| + ProxyInfo* proxy_info,
|
| + HttpNetworkSession* session,
|
| + StreamRequest::Delegate* delegate,
|
| + const BoundNetLog& net_log);
|
| + virtual int PreconnectStreams(int num_streams,
|
| + const HttpRequestInfo* info,
|
| + SSLConfig* ssl_config,
|
| + ProxyInfo* proxy_info,
|
| + HttpNetworkSession* session,
|
| + const BoundNetLog& net_log,
|
| + CompletionCallback* callback);
|
| + virtual void AddTLSIntolerantServer(const GURL& url);
|
| + virtual bool IsTLSIntolerantServer(const GURL& url);
|
| + virtual void ProcessAlternateProtocol(
|
| + HttpAlternateProtocols* alternate_protocols,
|
| + const std::string& alternate_protocol_str,
|
| + const HostPortPair& http_host_port_pair);
|
| + virtual GURL ApplyHostMappingRules(const GURL& url, HostPortPair* endpoint);
|
| +
|
| + // HttpStreamRequest::PreconnectDelegate API
|
| + virtual void OnPreconnectsComplete(HttpStreamRequest* request, int result);
|
| +
|
| private:
|
| typedef std::map<HttpStreamRequest*, CompletionCallback*> RequestCallbackMap;
|
| RequestCallbackMap request_callback_map_;
|
|
|