diff options
author | tfarina <tfarina@chromium.org> | 2015-10-11 13:19:03 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-10-11 20:21:03 +0000 |
commit | 77021d638be7c0e7816b315c9dc57b3dfd6bc4c3 (patch) | |
tree | 7d272e5502ee7e05124058f3a4bfd98602e2d7bc /net/dns/mdns_client_impl.cc | |
parent | c83cf04fd5a86b9e3190a22d3e78fe73c0ea280c (diff) | |
download | chromium_src-77021d638be7c0e7816b315c9dc57b3dfd6bc4c3.zip chromium_src-77021d638be7c0e7816b315c9dc57b3dfd6bc4c3.tar.gz chromium_src-77021d638be7c0e7816b315c9dc57b3dfd6bc4c3.tar.bz2 |
net: Move dns_util.* into dns directory.
It is DNS specific so it makes more sense to have it in net/dns rather
than in the generic net/base directory.
BUG=None
R=eroman@chromium.org,mmenke@chromium.org
TBR=gene@chromium.org,bauerb@chromium.org
NOPRESUBMIT=true
Review URL: https://codereview.chromium.org/1394233003
Cr-Commit-Position: refs/heads/master@{#353475}
Diffstat (limited to 'net/dns/mdns_client_impl.cc')
-rw-r--r-- | net/dns/mdns_client_impl.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/dns/mdns_client_impl.cc b/net/dns/mdns_client_impl.cc index 053d4fe..2a6f6af 100644 --- a/net/dns/mdns_client_impl.cc +++ b/net/dns/mdns_client_impl.cc @@ -16,10 +16,10 @@ #include "base/time/default_clock.h" #include "base/time/time.h" #include "base/timer/timer.h" -#include "net/base/dns_util.h" #include "net/base/net_errors.h" #include "net/base/rand_callback.h" #include "net/dns/dns_protocol.h" +#include "net/dns/dns_util.h" #include "net/dns/record_rdata.h" #include "net/log/net_log.h" #include "net/udp/datagram_socket.h" |