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

Side by Side Diff: net/quic/quic_blocked_writer_interface.h

Issue 1666843002: Refactor StringPiece hash. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Sort includes. Created 4 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
« no previous file with comments | « net/http/http_server_properties_impl.h ('k') | net/spdy/hpack/hpack_header_table.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 // This is an interface for all objects that want to be notified that 5 // This is an interface for all objects that want to be notified that
6 // the underlying UDP socket is available for writing (not write blocked 6 // the underlying UDP socket is available for writing (not write blocked
7 // anymore). 7 // anymore).
8 8
9 #ifndef NET_QUIC_QUIC_BLOCKED_WRITER_INTERFACE_H_ 9 #ifndef NET_QUIC_QUIC_BLOCKED_WRITER_INTERFACE_H_
10 #define NET_QUIC_QUIC_BLOCKED_WRITER_INTERFACE_H_ 10 #define NET_QUIC_QUIC_BLOCKED_WRITER_INTERFACE_H_
11 11
12 #include <stddef.h> 12 #include <stddef.h>
13 13
14 #include "net/base/net_export.h" 14 #include "net/base/net_export.h"
15 15
16 namespace net { 16 namespace net {
17 17
18 class NET_EXPORT_PRIVATE QuicBlockedWriterInterface { 18 class NET_EXPORT_PRIVATE QuicBlockedWriterInterface {
19 public: 19 public:
20 virtual ~QuicBlockedWriterInterface() {} 20 virtual ~QuicBlockedWriterInterface() {}
21 21
22 // Called by the PacketWriter when the underlying socket becomes writable 22 // Called by the PacketWriter when the underlying socket becomes writable
23 // so that the BlockedWriter can go ahead and try writing. 23 // so that the BlockedWriter can go ahead and try writing.
24 virtual void OnCanWrite() = 0; 24 virtual void OnCanWrite() = 0;
25 }; 25 };
26 26
27 } // namespace net
28
29 #if defined(COMPILER_GCC)
30 namespace BASE_HASH_NAMESPACE {
31 // Hash pointers as if they were int's, but bring more entropy to the lower 27 // Hash pointers as if they were int's, but bring more entropy to the lower
32 // bits. 28 // bits.
33 template <> 29 struct QuicBlockedWriterInterfacePtrHash {
34 struct hash<net::QuicBlockedWriterInterface*> {
35 std::size_t operator()(const net::QuicBlockedWriterInterface* ptr) const { 30 std::size_t operator()(const net::QuicBlockedWriterInterface* ptr) const {
36 size_t k = reinterpret_cast<size_t>(ptr); 31 size_t k = reinterpret_cast<size_t>(ptr);
37 return k + (k >> 6); 32 return k + (k >> 6);
38 } 33 }
39 }; 34 };
40 } 35
41 #endif 36 } // namespace net
42 37
43 #endif // NET_QUIC_QUIC_BLOCKED_WRITER_INTERFACE_H_ 38 #endif // NET_QUIC_QUIC_BLOCKED_WRITER_INTERFACE_H_
OLDNEW
« no previous file with comments | « net/http/http_server_properties_impl.h ('k') | net/spdy/hpack/hpack_header_table.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698