diff options
author | avi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-07-18 08:12:40 +0000 |
---|---|---|
committer | avi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-07-18 08:12:40 +0000 |
commit | 495cad9aa03d62e98a3979aa4d81b6f8ba095998 (patch) | |
tree | f3913ed4f124144e2840dd5d8e321834988de1dd /base/synchronization | |
parent | 30b3965b1eec6ffb588c3dc65fc5f92d000aca83 (diff) | |
download | chromium_src-495cad9aa03d62e98a3979aa4d81b6f8ba095998.zip chromium_src-495cad9aa03d62e98a3979aa4d81b6f8ba095998.tar.gz chromium_src-495cad9aa03d62e98a3979aa4d81b6f8ba095998.tar.bz2 |
Use a direct include of the message_loop header in base/.
BUG=260807
TEST=none
TBR=ben@chromium.org
Review URL: https://chromiumcodereview.appspot.com/19224003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@212281 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/synchronization')
4 files changed, 4 insertions, 4 deletions
diff --git a/base/synchronization/cancellation_flag_unittest.cc b/base/synchronization/cancellation_flag_unittest.cc index 36b8722..02b08b6 100644 --- a/base/synchronization/cancellation_flag_unittest.cc +++ b/base/synchronization/cancellation_flag_unittest.cc @@ -8,7 +8,7 @@ #include "base/bind.h" #include "base/logging.h" -#include "base/message_loop.h" +#include "base/message_loop/message_loop.h" #include "base/synchronization/spin_wait.h" #include "base/threading/thread.h" #include "base/time/time.h" diff --git a/base/synchronization/waitable_event_watcher.h b/base/synchronization/waitable_event_watcher.h index f2f5f04..ede2835 100644 --- a/base/synchronization/waitable_event_watcher.h +++ b/base/synchronization/waitable_event_watcher.h @@ -12,7 +12,7 @@ #include "base/win/object_watcher.h" #else #include "base/callback.h" -#include "base/message_loop.h" +#include "base/message_loop/message_loop.h" #include "base/synchronization/waitable_event.h" #endif diff --git a/base/synchronization/waitable_event_watcher_posix.cc b/base/synchronization/waitable_event_watcher_posix.cc index a8821b3..54e01f8 100644 --- a/base/synchronization/waitable_event_watcher_posix.cc +++ b/base/synchronization/waitable_event_watcher_posix.cc @@ -6,7 +6,7 @@ #include "base/bind.h" #include "base/location.h" -#include "base/message_loop.h" +#include "base/message_loop/message_loop.h" #include "base/synchronization/lock.h" #include "base/synchronization/waitable_event.h" diff --git a/base/synchronization/waitable_event_watcher_unittest.cc b/base/synchronization/waitable_event_watcher_unittest.cc index fbdc424..5319d1e 100644 --- a/base/synchronization/waitable_event_watcher_unittest.cc +++ b/base/synchronization/waitable_event_watcher_unittest.cc @@ -6,7 +6,7 @@ #include "base/bind.h" #include "base/callback.h" -#include "base/message_loop.h" +#include "base/message_loop/message_loop.h" #include "base/run_loop.h" #include "base/synchronization/waitable_event.h" #include "base/threading/platform_thread.h" |