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

Side by Side Diff: net/dns/mock_mdns_socket_factory.h

Issue 2253753002: Always use NonBlocking IO for UDP sockets on Windows. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 3 years, 8 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/dns/address_sorter_posix_unittest.cc ('k') | net/quic/chromium/quic_stream_factory.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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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_DNS_MOCK_MDNS_SOCKET_FACTORY_H_ 5 #ifndef NET_DNS_MOCK_MDNS_SOCKET_FACTORY_H_
6 #define NET_DNS_MOCK_MDNS_SOCKET_FACTORY_H_ 6 #define NET_DNS_MOCK_MDNS_SOCKET_FACTORY_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <memory> 10 #include <memory>
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 const CompletionCallback& callback)); 43 const CompletionCallback& callback));
44 44
45 MOCK_METHOD1(SetReceiveBufferSize, int(int32_t size)); 45 MOCK_METHOD1(SetReceiveBufferSize, int(int32_t size));
46 MOCK_METHOD1(SetSendBufferSize, int(int32_t size)); 46 MOCK_METHOD1(SetSendBufferSize, int(int32_t size));
47 MOCK_METHOD0(SetDoNotFragment, int()); 47 MOCK_METHOD0(SetDoNotFragment, int());
48 48
49 MOCK_METHOD0(Close, void()); 49 MOCK_METHOD0(Close, void());
50 50
51 MOCK_CONST_METHOD1(GetPeerAddress, int(IPEndPoint* address)); 51 MOCK_CONST_METHOD1(GetPeerAddress, int(IPEndPoint* address));
52 int GetLocalAddress(IPEndPoint* address) const override; 52 int GetLocalAddress(IPEndPoint* address) const override;
53 MOCK_METHOD0(UseNonBlockingIO, void());
54 MOCK_CONST_METHOD0(NetLog, const NetLogWithSource&()); 53 MOCK_CONST_METHOD0(NetLog, const NetLogWithSource&());
55 54
56 MOCK_METHOD0(AllowAddressReuse, void()); 55 MOCK_METHOD0(AllowAddressReuse, void());
57 MOCK_METHOD0(AllowBroadcast, void()); 56 MOCK_METHOD0(AllowBroadcast, void());
58 57
59 MOCK_CONST_METHOD1(JoinGroup, int(const IPAddress& group_address)); 58 MOCK_CONST_METHOD1(JoinGroup, int(const IPAddress& group_address));
60 MOCK_CONST_METHOD1(LeaveGroup, int(const IPAddress& address)); 59 MOCK_CONST_METHOD1(LeaveGroup, int(const IPAddress& address));
61 60
62 MOCK_METHOD1(SetMulticastInterface, int(uint32_t interface_index)); 61 MOCK_METHOD1(SetMulticastInterface, int(uint32_t interface_index));
63 MOCK_METHOD1(SetMulticastTimeToLive, int(int ttl)); 62 MOCK_METHOD1(SetMulticastTimeToLive, int(int ttl));
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 std::vector<std::unique_ptr<DatagramServerSocket>>* sockets); 106 std::vector<std::unique_ptr<DatagramServerSocket>>* sockets);
108 107
109 scoped_refptr<IOBuffer> recv_buffer_; 108 scoped_refptr<IOBuffer> recv_buffer_;
110 int recv_buffer_size_; 109 int recv_buffer_size_;
111 CompletionCallback recv_callback_; 110 CompletionCallback recv_callback_;
112 }; 111 };
113 112
114 } // namespace net 113 } // namespace net
115 114
116 #endif // NET_DNS_MOCK_MDNS_SOCKET_FACTORY_H_ 115 #endif // NET_DNS_MOCK_MDNS_SOCKET_FACTORY_H_
OLDNEW
« no previous file with comments | « net/dns/address_sorter_posix_unittest.cc ('k') | net/quic/chromium/quic_stream_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698