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_MDNS_CLIENT_IMPL_H_ | 5 #ifndef NET_DNS_MDNS_CLIENT_IMPL_H_ |
6 #define NET_DNS_MDNS_CLIENT_IMPL_H_ | 6 #define NET_DNS_MDNS_CLIENT_IMPL_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <queue> | 9 #include <queue> |
10 #include <string> | 10 #include <string> |
11 #include <utility> | 11 #include <utility> |
12 #include <vector> | 12 #include <vector> |
13 | 13 |
14 #include "base/cancelable_callback.h" | 14 #include "base/cancelable_callback.h" |
| 15 #include "base/gtest_prod_util.h" |
15 #include "base/memory/scoped_vector.h" | 16 #include "base/memory/scoped_vector.h" |
16 #include "base/observer_list.h" | 17 #include "base/observer_list.h" |
17 #include "net/base/io_buffer.h" | 18 #include "net/base/io_buffer.h" |
18 #include "net/base/ip_endpoint.h" | 19 #include "net/base/ip_endpoint.h" |
19 #include "net/dns/mdns_cache.h" | 20 #include "net/dns/mdns_cache.h" |
20 #include "net/dns/mdns_client.h" | 21 #include "net/dns/mdns_client.h" |
21 #include "net/udp/datagram_server_socket.h" | 22 #include "net/udp/datagram_server_socket.h" |
22 #include "net/udp/udp_server_socket.h" | 23 #include "net/udp/udp_server_socket.h" |
23 #include "net/udp/udp_socket.h" | 24 #include "net/udp/udp_socket.h" |
24 | 25 |
(...skipping 293 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
318 MDnsClientImpl* client_; | 319 MDnsClientImpl* client_; |
319 | 320 |
320 bool started_; | 321 bool started_; |
321 int flags_; | 322 int flags_; |
322 | 323 |
323 DISALLOW_COPY_AND_ASSIGN(MDnsTransactionImpl); | 324 DISALLOW_COPY_AND_ASSIGN(MDnsTransactionImpl); |
324 }; | 325 }; |
325 | 326 |
326 } // namespace net | 327 } // namespace net |
327 #endif // NET_DNS_MDNS_CLIENT_IMPL_H_ | 328 #endif // NET_DNS_MDNS_CLIENT_IMPL_H_ |
OLD | NEW |