| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "net/http/http_stream_factory_impl_request.h" | 5 #include "net/http/http_stream_factory_impl_request.h" |
| 6 | 6 |
| 7 #include "net/http/http_stream_factory_impl_job.h" | 7 #include "net/http/http_stream_factory_impl_job.h" |
| 8 #include "net/proxy/proxy_info.h" | 8 #include "net/proxy/proxy_info.h" |
| 9 #include "net/proxy/proxy_service.h" | 9 #include "net/proxy/proxy_service.h" |
| 10 #include "net/spdy/spdy_test_util_common.h" | 10 #include "net/spdy/spdy_test_util_common.h" |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 | 26 |
| 27 class DoNothingRequestDelegate : public HttpStreamRequest::Delegate { | 27 class DoNothingRequestDelegate : public HttpStreamRequest::Delegate { |
| 28 public: | 28 public: |
| 29 DoNothingRequestDelegate() {} | 29 DoNothingRequestDelegate() {} |
| 30 | 30 |
| 31 ~DoNothingRequestDelegate() override {} | 31 ~DoNothingRequestDelegate() override {} |
| 32 | 32 |
| 33 // HttpStreamRequest::Delegate | 33 // HttpStreamRequest::Delegate |
| 34 void OnStreamReady(const SSLConfig& used_ssl_config, | 34 void OnStreamReady(const SSLConfig& used_ssl_config, |
| 35 const ProxyInfo& used_proxy_info, | 35 const ProxyInfo& used_proxy_info, |
| 36 HttpStreamBase* stream) override {} | 36 HttpStream* stream) override {} |
| 37 void OnWebSocketHandshakeStreamReady( | 37 void OnWebSocketHandshakeStreamReady( |
| 38 const SSLConfig& used_ssl_config, | 38 const SSLConfig& used_ssl_config, |
| 39 const ProxyInfo& used_proxy_info, | 39 const ProxyInfo& used_proxy_info, |
| 40 WebSocketHandshakeStreamBase* stream) override {} | 40 WebSocketHandshakeStreamBase* stream) override {} |
| 41 void OnStreamFailed(int status, const SSLConfig& used_ssl_config) override {} | 41 void OnStreamFailed(int status, const SSLConfig& used_ssl_config) override {} |
| 42 void OnCertificateError(int status, | 42 void OnCertificateError(int status, |
| 43 const SSLConfig& used_ssl_config, | 43 const SSLConfig& used_ssl_config, |
| 44 const SSLInfo& ssl_info) override {} | 44 const SSLInfo& ssl_info) override {} |
| 45 void OnNeedsProxyAuth(const HttpResponseInfo& proxy_response, | 45 void OnNeedsProxyAuth(const HttpResponseInfo& proxy_response, |
| 46 const SSLConfig& used_ssl_config, | 46 const SSLConfig& used_ssl_config, |
| 47 const ProxyInfo& used_proxy_info, | 47 const ProxyInfo& used_proxy_info, |
| 48 HttpAuthController* auth_controller) override {} | 48 HttpAuthController* auth_controller) override {} |
| 49 void OnNeedsClientAuth(const SSLConfig& used_ssl_config, | 49 void OnNeedsClientAuth(const SSLConfig& used_ssl_config, |
| 50 SSLCertRequestInfo* cert_info) override {} | 50 SSLCertRequestInfo* cert_info) override {} |
| 51 void OnHttpsProxyTunnelResponse(const HttpResponseInfo& response_info, | 51 void OnHttpsProxyTunnelResponse(const HttpResponseInfo& response_info, |
| 52 const SSLConfig& used_ssl_config, | 52 const SSLConfig& used_ssl_config, |
| 53 const ProxyInfo& used_proxy_info, | 53 const ProxyInfo& used_proxy_info, |
| 54 HttpStreamBase* stream) override {} | 54 HttpStream* stream) override {} |
| 55 }; | 55 }; |
| 56 | 56 |
| 57 } // namespace | 57 } // namespace |
| 58 | 58 |
| 59 // Make sure that Request passes on its priority updates to its jobs. | 59 // Make sure that Request passes on its priority updates to its jobs. |
| 60 TEST_P(HttpStreamFactoryImplRequestTest, SetPriority) { | 60 TEST_P(HttpStreamFactoryImplRequestTest, SetPriority) { |
| 61 SpdySessionDependencies session_deps(GetParam(), | 61 SpdySessionDependencies session_deps(GetParam(), |
| 62 ProxyService::CreateDirect()); | 62 ProxyService::CreateDirect()); |
| 63 | 63 |
| 64 scoped_refptr<HttpNetworkSession> | 64 scoped_refptr<HttpNetworkSession> |
| (...skipping 20 matching lines...) Expand all Loading... |
| 85 EXPECT_EQ(MEDIUM, job->priority()); | 85 EXPECT_EQ(MEDIUM, job->priority()); |
| 86 | 86 |
| 87 // Make |job| the bound job. | 87 // Make |job| the bound job. |
| 88 request.OnStreamFailed(job, ERR_FAILED, SSLConfig()); | 88 request.OnStreamFailed(job, ERR_FAILED, SSLConfig()); |
| 89 | 89 |
| 90 request.SetPriority(IDLE); | 90 request.SetPriority(IDLE); |
| 91 EXPECT_EQ(IDLE, job->priority()); | 91 EXPECT_EQ(IDLE, job->priority()); |
| 92 } | 92 } |
| 93 | 93 |
| 94 } // namespace net | 94 } // namespace net |
| OLD | NEW |