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_SOCKET_NEXT_PROTO_H_ | 5 #ifndef NET_SOCKET_NEXT_PROTO_H_ |
6 #define NET_SOCKET_NEXT_PROTO_H_ | 6 #define NET_SOCKET_NEXT_PROTO_H_ |
7 | 7 |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "net/base/net_export.h" | 10 #include "net/base/net_export.h" |
(...skipping 29 matching lines...) Expand all Loading... | |
40 kProtoQUIC1SPDY3 = 200, | 40 kProtoQUIC1SPDY3 = 200, |
41 | 41 |
42 kProtoMaximumVersion = kProtoQUIC1SPDY3, | 42 kProtoMaximumVersion = kProtoQUIC1SPDY3, |
43 }; | 43 }; |
44 | 44 |
45 // List of protocols to use for NPN, used for configuring HttpNetworkSessions. | 45 // List of protocols to use for NPN, used for configuring HttpNetworkSessions. |
46 typedef std::vector<NextProto> NextProtoVector; | 46 typedef std::vector<NextProto> NextProtoVector; |
47 | 47 |
48 // Convenience functions to create NextProtoVector. | 48 // Convenience functions to create NextProtoVector. |
49 | 49 |
50 NET_EXPORT NextProtoVector NextProtosHttpOnly(); | 50 // Default values, which are subject to change over time. |
51 | |
52 // Default values, which are subject to change over time. Currently just | |
53 // SPDY 3 and 3.1. | |
54 NET_EXPORT NextProtoVector NextProtosDefaults(); | 51 NET_EXPORT NextProtoVector NextProtosDefaults(); |
55 | 52 |
53 // Enable SPDY/3.1 and QUIC, but not HTTP/2. | |
54 NET_EXPORT NextProtoVector NextProtosSpdy31(); | |
55 | |
56 NET_EXPORT NextProtoVector NextProtos(bool spdy31_enabled, | |
57 bool h2_14_enabled, | |
58 bool h2_enabled, | |
59 bool quic_enabled); | |
56 NET_EXPORT NextProtoVector NextProtosWithSpdyAndQuic(bool spdy_enabled, | 60 NET_EXPORT NextProtoVector NextProtosWithSpdyAndQuic(bool spdy_enabled, |
Ryan Hamilton
2015/03/20 23:38:07
nit: newline before
Bence
2015/03/23 14:19:14
Moot.
| |
57 bool quic_enabled); | 61 bool quic_enabled); |
Ryan Hamilton
2015/03/20 23:38:07
Do we really need this method since the previous o
Bence
2015/03/23 14:19:14
Moot.
| |
58 | 62 |
59 // All of these also enable QUIC. | |
60 NET_EXPORT NextProtoVector NextProtosSpdy31(); | |
61 NET_EXPORT NextProtoVector NextProtosSpdy4Http2(); | |
62 | |
63 } // namespace net | 63 } // namespace net |
64 | 64 |
65 #endif // NET_SOCKET_NEXT_PROTO_H_ | 65 #endif // NET_SOCKET_NEXT_PROTO_H_ |
OLD | NEW |