Index: net/http/http_stream_factory_impl_job.cc |
diff --git a/net/http/http_stream_factory_impl_job.cc b/net/http/http_stream_factory_impl_job.cc |
index a11dd2e99724b1d24a168d2919515cb63876b5f9..a77cce8dd931075e0dcbee2b750d3c13c9bb2683 100644 |
--- a/net/http/http_stream_factory_impl_job.cc |
+++ b/net/http/http_stream_factory_impl_job.cc |
@@ -134,7 +134,7 @@ int HttpStreamFactoryImpl::Job::Preconnect(int num_streams) { |
DCHECK_GT(num_streams, 0); |
HostPortPair origin_server = |
HostPortPair(request_info_.url.HostNoBrackets(), |
- request_info_.url.EffectiveIntPort()); |
+ static_cast<uint16>(request_info_.url.EffectiveIntPort())); |
base::WeakPtr<HttpServerProperties> http_server_properties = |
session_->http_server_properties(); |
if (http_server_properties && |
@@ -617,7 +617,7 @@ int HttpStreamFactoryImpl::Job::StartInternal() { |
} |
int HttpStreamFactoryImpl::Job::DoStart() { |
- int port = request_info_.url.EffectiveIntPort(); |
+ uint16 port = static_cast<uint16>(request_info_.url.EffectiveIntPort()); |
origin_ = HostPortPair(request_info_.url.HostNoBrackets(), port); |
origin_url_ = stream_factory_->ApplyHostMappingRules( |
request_info_.url, &origin_); |