summaryrefslogtreecommitdiffstats
path: root/net/socket_stream/socket_stream_job.h
diff options
context:
space:
mode:
Diffstat (limited to 'net/socket_stream/socket_stream_job.h')
-rw-r--r--net/socket_stream/socket_stream_job.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/net/socket_stream/socket_stream_job.h b/net/socket_stream/socket_stream_job.h
index 24eaa19..fdf8d4b 100644
--- a/net/socket_stream/socket_stream_job.h
+++ b/net/socket_stream/socket_stream_job.h
@@ -16,6 +16,9 @@ class GURL;
namespace net {
+class SSLConfigService;
+class TransportSecurityState;
+
// SocketStreamJob represents full-duplex communication over SocketStream.
// If a protocol (e.g. WebSocket protocol) needs to inspect/modify data
// over SocketStream, you can implement protocol specific job (e.g.
@@ -34,7 +37,8 @@ class SocketStreamJob : public base::RefCountedThreadSafe<SocketStreamJob> {
static SocketStreamJob* CreateSocketStreamJob(
const GURL& url,
SocketStream::Delegate* delegate,
- const URLRequestContext& context);
+ TransportSecurityState* sts,
+ SSLConfigService* ssl);
SocketStreamJob();
void InitSocketStream(SocketStream* socket) {