OLD | NEW |
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 Loading... |
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 Loading... |
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_ |
OLD | NEW |