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/win | |
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/win')
-rw-r--r-- | base/win/metro.cc | 2 | ||||
-rw-r--r-- | base/win/object_watcher.h | 2 | ||||
-rw-r--r-- | base/win/object_watcher_unittest.cc | 2 | ||||
-rw-r--r-- | base/win/wrapped_window_proc_unittest.cc | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/base/win/metro.cc b/base/win/metro.cc index acf530f..afe4fce 100644 --- a/base/win/metro.cc +++ b/base/win/metro.cc @@ -4,7 +4,7 @@ #include "base/win/metro.h" -#include "base/message_loop.h" +#include "base/message_loop/message_loop.h" #include "base/strings/string_util.h" #include "base/win/scoped_comptr.h" #include "base/win/windows_version.h" diff --git a/base/win/object_watcher.h b/base/win/object_watcher.h index 742f2b0..4222c20 100644 --- a/base/win/object_watcher.h +++ b/base/win/object_watcher.h @@ -10,7 +10,7 @@ #include "base/base_export.h" #include "base/callback.h" #include "base/memory/weak_ptr.h" -#include "base/message_loop.h" +#include "base/message_loop/message_loop.h" namespace base { namespace win { diff --git a/base/win/object_watcher_unittest.cc b/base/win/object_watcher_unittest.cc index df666463..46b98de 100644 --- a/base/win/object_watcher_unittest.cc +++ b/base/win/object_watcher_unittest.cc @@ -6,7 +6,7 @@ #include <process.h> -#include "base/message_loop.h" +#include "base/message_loop/message_loop.h" #include "base/run_loop.h" #include "testing/gtest/include/gtest/gtest.h" diff --git a/base/win/wrapped_window_proc_unittest.cc b/base/win/wrapped_window_proc_unittest.cc index ccf3c85..161c913 100644 --- a/base/win/wrapped_window_proc_unittest.cc +++ b/base/win/wrapped_window_proc_unittest.cc @@ -2,8 +2,8 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. +#include "base/message_loop/message_loop.h" #include "base/win/wrapped_window_proc.h" -#include "base/message_loop.h" #include "testing/gtest/include/gtest/gtest.h" namespace { |