diff options
Diffstat (limited to 'net/http/http_cache_transaction.cc')
-rw-r--r-- | net/http/http_cache_transaction.cc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/net/http/http_cache_transaction.cc b/net/http/http_cache_transaction.cc index ba42d16..7035ffa 100644 --- a/net/http/http_cache_transaction.cc +++ b/net/http/http_cache_transaction.cc @@ -533,6 +533,12 @@ void HttpCache::Transaction::SetPriority(RequestPriority priority) { network_trans_->SetPriority(priority_); } +void HttpCache::Transaction::SetWebSocketHandshakeStreamCreateHelper( + WebSocketHandshakeStreamBase::CreateHelper* create_helper) { + if (network_trans_) + network_trans_->SetWebSocketHandshakeStreamCreateHelper(create_helper); +} + //----------------------------------------------------------------------------- void HttpCache::Transaction::DoCallback(int rv) { |