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

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

Issue 2508593002: net: move udp directory into socket (Closed)
Patch Set: revert sys/socket.h change Created 4 years, 1 month 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/host_resolver_impl.cc ('k') | net/dns/mdns_client_impl.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_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 <stdint.h> 8 #include <stdint.h>
9 9
10 #include <map> 10 #include <map>
11 #include <memory> 11 #include <memory>
12 #include <queue> 12 #include <queue>
13 #include <string> 13 #include <string>
14 #include <utility> 14 #include <utility>
15 #include <vector> 15 #include <vector>
16 16
17 #include "base/cancelable_callback.h" 17 #include "base/cancelable_callback.h"
18 #include "base/gtest_prod_util.h" 18 #include "base/gtest_prod_util.h"
19 #include "base/macros.h" 19 #include "base/macros.h"
20 #include "base/observer_list.h" 20 #include "base/observer_list.h"
21 #include "net/base/io_buffer.h" 21 #include "net/base/io_buffer.h"
22 #include "net/base/ip_endpoint.h" 22 #include "net/base/ip_endpoint.h"
23 #include "net/base/net_export.h" 23 #include "net/base/net_export.h"
24 #include "net/dns/mdns_cache.h" 24 #include "net/dns/mdns_cache.h"
25 #include "net/dns/mdns_client.h" 25 #include "net/dns/mdns_client.h"
26 #include "net/udp/datagram_server_socket.h" 26 #include "net/socket/datagram_server_socket.h"
27 #include "net/udp/udp_server_socket.h" 27 #include "net/socket/udp_server_socket.h"
28 #include "net/udp/udp_socket.h" 28 #include "net/socket/udp_socket.h"
29 29
30 namespace base { 30 namespace base {
31 class Clock; 31 class Clock;
32 class Timer; 32 class Timer;
33 } // namespace base 33 } // namespace base
34 34
35 namespace net { 35 namespace net {
36 36
37 class MDnsSocketFactoryImpl : public MDnsSocketFactory { 37 class MDnsSocketFactoryImpl : public MDnsSocketFactory {
38 public: 38 public:
(...skipping 286 matching lines...) Expand 10 before | Expand all | Expand 10 after
325 MDnsClientImpl* client_; 325 MDnsClientImpl* client_;
326 326
327 bool started_; 327 bool started_;
328 int flags_; 328 int flags_;
329 329
330 DISALLOW_COPY_AND_ASSIGN(MDnsTransactionImpl); 330 DISALLOW_COPY_AND_ASSIGN(MDnsTransactionImpl);
331 }; 331 };
332 332
333 } // namespace net 333 } // namespace net
334 #endif // NET_DNS_MDNS_CLIENT_IMPL_H_ 334 #endif // NET_DNS_MDNS_CLIENT_IMPL_H_
OLDNEW
« no previous file with comments | « net/dns/host_resolver_impl.cc ('k') | net/dns/mdns_client_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698