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

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

Issue 12086018: GTTF: Add missing virtual destructors. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: trybots 4 Created 7 years, 10 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
« no previous file with comments | « net/http/http_pipelined_host.h ('k') | net/http/http_pipelined_host_impl.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_HOST_FORCED_H_ 5 #ifndef NET_HTTP_HTTP_PIPELINED_HOST_FORCED_H_
6 #define NET_HTTP_HTTP_PIPELINED_HOST_FORCED_H_ 6 #define NET_HTTP_HTTP_PIPELINED_HOST_FORCED_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 14 matching lines...) Expand all
25 class ClientSocketHandle; 25 class ClientSocketHandle;
26 class HttpPipelinedStream; 26 class HttpPipelinedStream;
27 class ProxyInfo; 27 class ProxyInfo;
28 struct SSLConfig; 28 struct SSLConfig;
29 29
30 // Manages a single pipelined connection for requests to a host that are forced 30 // Manages a single pipelined connection for requests to a host that are forced
31 // to use pipelining. Note that this is normally not used. It is intended to 31 // to use pipelining. Note that this is normally not used. It is intended to
32 // test the user's connection for pipelining compatibility. 32 // test the user's connection for pipelining compatibility.
33 class NET_EXPORT_PRIVATE HttpPipelinedHostForced 33 class NET_EXPORT_PRIVATE HttpPipelinedHostForced
34 : public HttpPipelinedHost, 34 : public HttpPipelinedHost,
35 public HttpPipelinedConnection::Delegate { 35 public NON_EXPORTED_BASE(HttpPipelinedConnection::Delegate) {
36 public: 36 public:
37 HttpPipelinedHostForced(HttpPipelinedHost::Delegate* delegate, 37 HttpPipelinedHostForced(HttpPipelinedHost::Delegate* delegate,
38 const Key& key, 38 const Key& key,
39 HttpPipelinedConnection::Factory* factory); 39 HttpPipelinedConnection::Factory* factory);
40 virtual ~HttpPipelinedHostForced(); 40 virtual ~HttpPipelinedHostForced();
41 41
42 // HttpPipelinedHost interface 42 // HttpPipelinedHost interface
43 virtual HttpPipelinedStream* CreateStreamOnNewPipeline( 43 virtual HttpPipelinedStream* CreateStreamOnNewPipeline(
44 ClientSocketHandle* connection, 44 ClientSocketHandle* connection,
45 const SSLConfig& used_ssl_config, 45 const SSLConfig& used_ssl_config,
(...skipping 28 matching lines...) Expand all
74 const Key key_; 74 const Key key_;
75 scoped_ptr<HttpPipelinedConnection> pipeline_; 75 scoped_ptr<HttpPipelinedConnection> pipeline_;
76 scoped_ptr<HttpPipelinedConnection::Factory> factory_; 76 scoped_ptr<HttpPipelinedConnection::Factory> factory_;
77 77
78 DISALLOW_COPY_AND_ASSIGN(HttpPipelinedHostForced); 78 DISALLOW_COPY_AND_ASSIGN(HttpPipelinedHostForced);
79 }; 79 };
80 80
81 } // namespace net 81 } // namespace net
82 82
83 #endif // NET_HTTP_HTTP_PIPELINED_HOST_FORCED_H_ 83 #endif // NET_HTTP_HTTP_PIPELINED_HOST_FORCED_H_
OLDNEW
« no previous file with comments | « net/http/http_pipelined_host.h ('k') | net/http/http_pipelined_host_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698