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

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

Issue 2396503002: Fix net_export.h includes. (Closed)
Patch Set: Created 4 years, 2 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/mdns_client.h ('k') | net/filter/source_stream.h » ('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/dns/mdns_cache.h" 24 #include "net/dns/mdns_cache.h"
24 #include "net/dns/mdns_client.h" 25 #include "net/dns/mdns_client.h"
25 #include "net/udp/datagram_server_socket.h" 26 #include "net/udp/datagram_server_socket.h"
26 #include "net/udp/udp_server_socket.h" 27 #include "net/udp/udp_server_socket.h"
27 #include "net/udp/udp_socket.h" 28 #include "net/udp/udp_socket.h"
28 29
29 namespace base { 30 namespace base {
30 class Clock; 31 class Clock;
31 class Timer; 32 class Timer;
32 } // namespace base 33 } // namespace base
(...skipping 291 matching lines...) Expand 10 before | Expand all | Expand 10 after
324 MDnsClientImpl* client_; 325 MDnsClientImpl* client_;
325 326
326 bool started_; 327 bool started_;
327 int flags_; 328 int flags_;
328 329
329 DISALLOW_COPY_AND_ASSIGN(MDnsTransactionImpl); 330 DISALLOW_COPY_AND_ASSIGN(MDnsTransactionImpl);
330 }; 331 };
331 332
332 } // namespace net 333 } // namespace net
333 #endif // NET_DNS_MDNS_CLIENT_IMPL_H_ 334 #endif // NET_DNS_MDNS_CLIENT_IMPL_H_
OLDNEW
« no previous file with comments | « net/dns/mdns_client.h ('k') | net/filter/source_stream.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698