1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "net/http/http_network_layer.h"
7 #include "base/logging.h"
8 #include "base/strings/string_number_conversions.h"
9 #include "base/strings/string_split.h"
10 #include "base/strings/string_util.h"
11 #include "net/http/http_network_session.h"
12 #include "net/http/http_network_transaction.h"
13 #include "net/http/http_server_properties_impl.h"
14 #include "net/http/http_stream_factory_impl_job.h"
15 #include "net/spdy/spdy_framer.h"
16 #include "net/spdy/spdy_session.h"
17 #include "net/spdy/spdy_session_pool.h"
21 //-----------------------------------------------------------------------------
22 HttpNetworkLayer::HttpNetworkLayer(HttpNetworkSession
* session
)
25 DCHECK(session_
.get());
28 HttpNetworkLayer::~HttpNetworkLayer() {
31 //-----------------------------------------------------------------------------
34 HttpTransactionFactory
* HttpNetworkLayer::CreateFactory(
35 HttpNetworkSession
* session
) {
38 return new HttpNetworkLayer(session
);
42 void HttpNetworkLayer::ForceAlternateProtocol() {
43 PortAlternateProtocolPair pair
;
45 pair
.protocol
= NPN_SPDY_2
;
46 HttpServerPropertiesImpl::ForceAlternateProtocol(pair
);
49 //-----------------------------------------------------------------------------
51 int HttpNetworkLayer::CreateTransaction(RequestPriority priority
,
52 scoped_ptr
<HttpTransaction
>* trans
,
53 HttpTransactionDelegate
* delegate
) {
55 return ERR_NETWORK_IO_SUSPENDED
;
57 trans
->reset(new HttpNetworkTransaction(priority
, GetSession()));
61 HttpCache
* HttpNetworkLayer::GetCache() {
65 HttpNetworkSession
* HttpNetworkLayer::GetSession() { return session_
.get(); }
67 void HttpNetworkLayer::OnSuspend() {
71 session_
->CloseIdleConnections();
74 void HttpNetworkLayer::OnResume() {