Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(397)

Side by Side Diff: net/http/http_pipelined_connection_impl.h

Issue 12680003: net: split net/ssl out of net/base (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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_HTTP_HTTP_PIPELINED_CONNECTION_IMPL_H_ 5 #ifndef NET_HTTP_HTTP_PIPELINED_CONNECTION_IMPL_H_
6 #define NET_HTTP_HTTP_PIPELINED_CONNECTION_IMPL_H_ 6 #define NET_HTTP_HTTP_PIPELINED_CONNECTION_IMPL_H_
7 7
8 #include <map> 8 #include <map>
9 #include <queue> 9 #include <queue>
10 #include <string> 10 #include <string>
11 11
12 #include "base/basictypes.h" 12 #include "base/basictypes.h"
13 #include "base/location.h" 13 #include "base/location.h"
14 #include "base/memory/linked_ptr.h" 14 #include "base/memory/linked_ptr.h"
15 #include "base/memory/weak_ptr.h" 15 #include "base/memory/weak_ptr.h"
16 #include "net/base/completion_callback.h" 16 #include "net/base/completion_callback.h"
17 #include "net/base/net_export.h" 17 #include "net/base/net_export.h"
18 #include "net/base/net_log.h" 18 #include "net/base/net_log.h"
19 #include "net/base/ssl_config_service.h"
20 #include "net/http/http_pipelined_connection.h" 19 #include "net/http/http_pipelined_connection.h"
21 #include "net/http/http_request_info.h" 20 #include "net/http/http_request_info.h"
22 #include "net/http/http_stream_parser.h" 21 #include "net/http/http_stream_parser.h"
23 #include "net/proxy/proxy_info.h" 22 #include "net/proxy/proxy_info.h"
23 #include "net/ssl/ssl_config_service.h"
24 24
25 namespace net { 25 namespace net {
26 26
27 class ClientSocketHandle; 27 class ClientSocketHandle;
28 class GrowableIOBuffer; 28 class GrowableIOBuffer;
29 class HostPortPair; 29 class HostPortPair;
30 class HttpNetworkSession; 30 class HttpNetworkSession;
31 class HttpRequestHeaders; 31 class HttpRequestHeaders;
32 class HttpResponseInfo; 32 class HttpResponseInfo;
33 class IOBuffer; 33 class IOBuffer;
(...skipping 287 matching lines...) Expand 10 before | Expand all | Expand 10 after
321 ReadHeadersState read_next_state_; 321 ReadHeadersState read_next_state_;
322 int active_read_id_; 322 int active_read_id_;
323 bool read_still_on_call_stack_; 323 bool read_still_on_call_stack_;
324 324
325 DISALLOW_COPY_AND_ASSIGN(HttpPipelinedConnectionImpl); 325 DISALLOW_COPY_AND_ASSIGN(HttpPipelinedConnectionImpl);
326 }; 326 };
327 327
328 } // namespace net 328 } // namespace net
329 329
330 #endif // NET_HTTP_HTTP_PIPELINED_CONNECTION_IMPL_H_ 330 #endif // NET_HTTP_HTTP_PIPELINED_CONNECTION_IMPL_H_
OLDNEW
« no previous file with comments | « net/http/http_network_transaction_spdy3_unittest.cc ('k') | net/http/http_pipelined_host_forced_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698