Windows should animate when they are about to get docked at screen edges.
[chromium-blink-merge.git] / net / http / http_pipelined_connection.h
blobd0d3599e3f198ec36707048ec022a85539a1860d
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 #ifndef NET_HTTP_HTTP_PIPELINED_CONNECTION_H_
6 #define NET_HTTP_HTTP_PIPELINED_CONNECTION_H_
8 #include "net/base/net_export.h"
9 #include "net/base/net_log.h"
10 #include "net/socket/ssl_client_socket.h"
12 namespace net {
14 class BoundNetLog;
15 class ClientSocketHandle;
16 class HostPortPair;
17 class HttpPipelinedStream;
18 class ProxyInfo;
19 struct SSLConfig;
21 class NET_EXPORT_PRIVATE HttpPipelinedConnection {
22 public:
23 enum Feedback {
24 OK,
25 PIPELINE_SOCKET_ERROR,
26 OLD_HTTP_VERSION,
27 MUST_CLOSE_CONNECTION,
28 AUTHENTICATION_REQUIRED,
31 class Delegate {
32 public:
33 // Called when a pipeline has newly available capacity. This may be because
34 // the first request has been sent and the pipeline is now active. Or, it
35 // may be because a request successfully completed.
36 virtual void OnPipelineHasCapacity(HttpPipelinedConnection* pipeline) = 0;
38 // Called every time a pipeline receives headers. Lets the delegate know if
39 // the headers indicate that pipelining can be used.
40 virtual void OnPipelineFeedback(HttpPipelinedConnection* pipeline,
41 Feedback feedback) = 0;
44 class Factory {
45 public:
46 virtual ~Factory() {}
48 virtual HttpPipelinedConnection* CreateNewPipeline(
49 ClientSocketHandle* connection,
50 Delegate* delegate,
51 const HostPortPair& origin,
52 const SSLConfig& used_ssl_config,
53 const ProxyInfo& used_proxy_info,
54 const BoundNetLog& net_log,
55 bool was_npn_negotiated,
56 NextProto protocol_negotiated) = 0;
59 virtual ~HttpPipelinedConnection() {}
61 // Returns a new stream that uses this pipeline.
62 virtual HttpPipelinedStream* CreateNewStream() = 0;
64 // The number of streams currently associated with this pipeline.
65 virtual int depth() const = 0;
67 // True if this pipeline can accept new HTTP requests. False if a fatal error
68 // has occurred.
69 virtual bool usable() const = 0;
71 // True if this pipeline has bound one request and is ready for additional
72 // requests.
73 virtual bool active() const = 0;
75 // The SSLConfig used to establish this connection.
76 virtual const SSLConfig& used_ssl_config() const = 0;
78 // The ProxyInfo used to establish this connection.
79 virtual const ProxyInfo& used_proxy_info() const = 0;
81 // The BoundNetLog of this pipelined connection.
82 virtual const BoundNetLog& net_log() const = 0;
84 // True if this connection was NPN negotiated.
85 virtual bool was_npn_negotiated() const = 0;
87 // Protocol negotiated with the server.
88 virtual NextProto protocol_negotiated() const = 0;
91 } // namespace net
93 #endif // NET_HTTP_HTTP_PIPELINED_CONNECTION_H_