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

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

Issue 2250473007: Move UseNonBlockingIO from a windows-only method (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: socket_host_udp_unittest.cc Created 4 years, 4 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 30 matching lines...) Expand all
41 const std::string address, 41 const std::string address,
42 const CompletionCallback& callback)); 42 const CompletionCallback& callback));
43 43
44 MOCK_METHOD1(SetReceiveBufferSize, int(int32_t size)); 44 MOCK_METHOD1(SetReceiveBufferSize, int(int32_t size));
45 MOCK_METHOD1(SetSendBufferSize, int(int32_t size)); 45 MOCK_METHOD1(SetSendBufferSize, int(int32_t size));
46 46
47 MOCK_METHOD0(Close, void()); 47 MOCK_METHOD0(Close, void());
48 48
49 MOCK_CONST_METHOD1(GetPeerAddress, int(IPEndPoint* address)); 49 MOCK_CONST_METHOD1(GetPeerAddress, int(IPEndPoint* address));
50 int GetLocalAddress(IPEndPoint* address) const override; 50 int GetLocalAddress(IPEndPoint* address) const override;
51 MOCK_METHOD0(UseNonBlockingIO, void());
51 MOCK_CONST_METHOD0(NetLog, const BoundNetLog&()); 52 MOCK_CONST_METHOD0(NetLog, const BoundNetLog&());
52 53
53 MOCK_METHOD0(AllowAddressReuse, void()); 54 MOCK_METHOD0(AllowAddressReuse, void());
54 MOCK_METHOD0(AllowBroadcast, void()); 55 MOCK_METHOD0(AllowBroadcast, void());
55 56
56 MOCK_CONST_METHOD1(JoinGroup, int(const IPAddress& group_address)); 57 MOCK_CONST_METHOD1(JoinGroup, int(const IPAddress& group_address));
57 MOCK_CONST_METHOD1(LeaveGroup, int(const IPAddress& address)); 58 MOCK_CONST_METHOD1(LeaveGroup, int(const IPAddress& address));
58 59
59 MOCK_METHOD1(SetMulticastInterface, int(uint32_t interface_index)); 60 MOCK_METHOD1(SetMulticastInterface, int(uint32_t interface_index));
60 MOCK_METHOD1(SetMulticastTimeToLive, int(int ttl)); 61 MOCK_METHOD1(SetMulticastTimeToLive, int(int ttl));
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 std::vector<std::unique_ptr<DatagramServerSocket>>* sockets); 105 std::vector<std::unique_ptr<DatagramServerSocket>>* sockets);
105 106
106 scoped_refptr<IOBuffer> recv_buffer_; 107 scoped_refptr<IOBuffer> recv_buffer_;
107 int recv_buffer_size_; 108 int recv_buffer_size_;
108 CompletionCallback recv_callback_; 109 CompletionCallback recv_callback_;
109 }; 110 };
110 111
111 } // namespace net 112 } // namespace net
112 113
113 #endif // NET_DNS_MOCK_MDNS_SOCKET_FACTORY_H_ 114 #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