diff options
author | avi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-07-18 00:41:22 +0000 |
---|---|---|
committer | avi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-07-18 00:41:22 +0000 |
commit | 7f86564d159ce9a7f213fde106aefe1488f93d5a (patch) | |
tree | 32f4e71679b43216bc0d679ac538ac2c06ee7bf5 /net/udp | |
parent | 56fad1701794bf87027fe3e3d7fae51cb30e89e6 (diff) | |
download | chromium_src-7f86564d159ce9a7f213fde106aefe1488f93d5a.zip chromium_src-7f86564d159ce9a7f213fde106aefe1488f93d5a.tar.gz chromium_src-7f86564d159ce9a7f213fde106aefe1488f93d5a.tar.bz2 |
Use a direct include of the message_loop header in net/, part 3.
BUG=260807
TEST=none
TBR=ben@chromium.org
Review URL: https://chromiumcodereview.appspot.com/19486003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@212191 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/udp')
-rw-r--r-- | net/udp/udp_socket_libevent.cc | 2 | ||||
-rw-r--r-- | net/udp/udp_socket_libevent.h | 6 | ||||
-rw-r--r-- | net/udp/udp_socket_win.cc | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/net/udp/udp_socket_libevent.cc b/net/udp/udp_socket_libevent.cc index 073e61c..7785446 100644 --- a/net/udp/udp_socket_libevent.cc +++ b/net/udp/udp_socket_libevent.cc @@ -12,7 +12,7 @@ #include "base/callback.h" #include "base/logging.h" -#include "base/message_loop.h" +#include "base/message_loop/message_loop.h" #include "base/metrics/stats_counters.h" #include "base/posix/eintr_wrapper.h" #include "base/rand_util.h" diff --git a/net/udp/udp_socket_libevent.h b/net/udp/udp_socket_libevent.h index 496f446..8f68a9b 100644 --- a/net/udp/udp_socket_libevent.h +++ b/net/udp/udp_socket_libevent.h @@ -7,14 +7,14 @@ #include "base/memory/ref_counted.h" #include "base/memory/scoped_ptr.h" -#include "base/message_loop.h" +#include "base/message_loop/message_loop.h" #include "base/threading/non_thread_safe.h" #include "net/base/completion_callback.h" -#include "net/base/net_export.h" -#include "net/base/rand_callback.h" #include "net/base/io_buffer.h" #include "net/base/ip_endpoint.h" +#include "net/base/net_export.h" #include "net/base/net_log.h" +#include "net/base/rand_callback.h" #include "net/udp/datagram_socket.h" namespace net { diff --git a/net/udp/udp_socket_win.cc b/net/udp/udp_socket_win.cc index 500abfd..13fbe6c 100644 --- a/net/udp/udp_socket_win.cc +++ b/net/udp/udp_socket_win.cc @@ -8,7 +8,7 @@ #include "base/callback.h" #include "base/logging.h" -#include "base/message_loop.h" +#include "base/message_loop/message_loop.h" #include "base/metrics/histogram.h" #include "base/metrics/stats_counters.h" #include "base/posix/eintr_wrapper.h" |