| OLD | NEW | 
|---|
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 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 #ifndef NET_SPDY_SPDY_SESSION_H_ | 5 #ifndef NET_SPDY_SPDY_SESSION_H_ | 
| 6 #define NET_SPDY_SPDY_SESSION_H_ | 6 #define NET_SPDY_SPDY_SESSION_H_ | 
| 7 | 7 | 
| 8 #include <stddef.h> | 8 #include <stddef.h> | 
| 9 #include <stdint.h> | 9 #include <stdint.h> | 
| 10 | 10 | 
| (...skipping 13 matching lines...) Expand all  Loading... | 
| 24 #include "net/base/load_states.h" | 24 #include "net/base/load_states.h" | 
| 25 #include "net/base/net_errors.h" | 25 #include "net/base/net_errors.h" | 
| 26 #include "net/base/net_export.h" | 26 #include "net/base/net_export.h" | 
| 27 #include "net/base/request_priority.h" | 27 #include "net/base/request_priority.h" | 
| 28 #include "net/log/net_log_source.h" | 28 #include "net/log/net_log_source.h" | 
| 29 #include "net/socket/client_socket_handle.h" | 29 #include "net/socket/client_socket_handle.h" | 
| 30 #include "net/socket/client_socket_pool.h" | 30 #include "net/socket/client_socket_pool.h" | 
| 31 #include "net/socket/next_proto.h" | 31 #include "net/socket/next_proto.h" | 
| 32 #include "net/socket/ssl_client_socket.h" | 32 #include "net/socket/ssl_client_socket.h" | 
| 33 #include "net/socket/stream_socket.h" | 33 #include "net/socket/stream_socket.h" | 
| 34 #include "net/spdy/buffered_spdy_framer.h" | 34 #include "net/spdy/chromium/buffered_spdy_framer.h" | 
| 35 #include "net/spdy/http2_priority_dependencies.h" | 35 #include "net/spdy/chromium/http2_priority_dependencies.h" | 
| 36 #include "net/spdy/multiplexed_session.h" | 36 #include "net/spdy/chromium/multiplexed_session.h" | 
|  | 37 #include "net/spdy/chromium/server_push_delegate.h" | 
|  | 38 #include "net/spdy/chromium/spdy_buffer.h" | 
|  | 39 #include "net/spdy/chromium/spdy_session_pool.h" | 
|  | 40 #include "net/spdy/chromium/spdy_stream.h" | 
|  | 41 #include "net/spdy/chromium/spdy_write_queue.h" | 
|  | 42 #include "net/spdy/core/spdy_alt_svc_wire_format.h" | 
|  | 43 #include "net/spdy/core/spdy_framer.h" | 
|  | 44 #include "net/spdy/core/spdy_header_block.h" | 
|  | 45 #include "net/spdy/core/spdy_protocol.h" | 
| 37 #include "net/spdy/platform/api/spdy_string.h" | 46 #include "net/spdy/platform/api/spdy_string.h" | 
| 38 #include "net/spdy/platform/api/spdy_string_piece.h" | 47 #include "net/spdy/platform/api/spdy_string_piece.h" | 
| 39 #include "net/spdy/server_push_delegate.h" |  | 
| 40 #include "net/spdy/spdy_alt_svc_wire_format.h" |  | 
| 41 #include "net/spdy/spdy_buffer.h" |  | 
| 42 #include "net/spdy/spdy_framer.h" |  | 
| 43 #include "net/spdy/spdy_header_block.h" |  | 
| 44 #include "net/spdy/spdy_protocol.h" |  | 
| 45 #include "net/spdy/spdy_session_pool.h" |  | 
| 46 #include "net/spdy/spdy_stream.h" |  | 
| 47 #include "net/spdy/spdy_write_queue.h" |  | 
| 48 #include "net/ssl/ssl_config_service.h" | 48 #include "net/ssl/ssl_config_service.h" | 
| 49 #include "url/gurl.h" | 49 #include "url/gurl.h" | 
| 50 #include "url/scheme_host_port.h" | 50 #include "url/scheme_host_port.h" | 
| 51 | 51 | 
| 52 namespace net { | 52 namespace net { | 
| 53 | 53 | 
| 54 namespace test { | 54 namespace test { | 
| 55 class SpdyStreamTest; | 55 class SpdyStreamTest; | 
| 56 } | 56 } | 
| 57 | 57 | 
| (...skipping 1169 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 1227   // Used for posting asynchronous IO tasks.  We use this even though | 1227   // Used for posting asynchronous IO tasks.  We use this even though | 
| 1228   // SpdySession is refcounted because we don't need to keep the SpdySession | 1228   // SpdySession is refcounted because we don't need to keep the SpdySession | 
| 1229   // alive if the last reference is within a RunnableMethod.  Just revoke the | 1229   // alive if the last reference is within a RunnableMethod.  Just revoke the | 
| 1230   // method. | 1230   // method. | 
| 1231   base::WeakPtrFactory<SpdySession> weak_factory_; | 1231   base::WeakPtrFactory<SpdySession> weak_factory_; | 
| 1232 }; | 1232 }; | 
| 1233 | 1233 | 
| 1234 }  // namespace net | 1234 }  // namespace net | 
| 1235 | 1235 | 
| 1236 #endif  // NET_SPDY_SPDY_SESSION_H_ | 1236 #endif  // NET_SPDY_SPDY_SESSION_H_ | 
| OLD | NEW | 
|---|