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

Side by Side Diff: net/socket/next_proto.h

Issue 1371263002: Refactor SSLClientSocket::SerializeNextProtos(). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Move DisableHTTP2 to next_protos. Created 5 years, 2 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
« no previous file with comments | « no previous file | net/socket/next_proto.cc » ('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_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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 // Enable SPDY/3.1 and QUIC, but not HTTP/2. 51 // Enable SPDY/3.1 and QUIC, but not HTTP/2.
52 NET_EXPORT NextProtoVector NextProtosSpdy31(); 52 NET_EXPORT NextProtoVector NextProtosSpdy31();
53 53
54 // Control SPDY/3.1 and HTTP/2 separately. 54 // Control SPDY/3.1 and HTTP/2 separately.
55 NET_EXPORT NextProtoVector NextProtosWithSpdyAndQuic(bool spdy_enabled, 55 NET_EXPORT NextProtoVector NextProtosWithSpdyAndQuic(bool spdy_enabled,
56 bool quic_enabled); 56 bool quic_enabled);
57 57
58 // Returns true if |next_proto| is a version of SPDY or HTTP/2. 58 // Returns true if |next_proto| is a version of SPDY or HTTP/2.
59 bool NextProtoIsSPDY(NextProto next_proto); 59 bool NextProtoIsSPDY(NextProto next_proto);
60 60
61 // Remove HTTP/2 from |next_protos|.
62 NET_EXPORT void DisableHTTP2(NextProtoVector* next_protos);
63
61 } // namespace net 64 } // namespace net
62 65
63 #endif // NET_SOCKET_NEXT_PROTO_H_ 66 #endif // NET_SOCKET_NEXT_PROTO_H_
OLDNEW
« no previous file with comments | « no previous file | net/socket/next_proto.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698