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/tools/dump_cache | |
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/tools/dump_cache')
-rw-r--r-- | net/tools/dump_cache/dump_files.cc | 4 | ||||
-rw-r--r-- | net/tools/dump_cache/simple_cache_dumper.cc | 2 | ||||
-rw-r--r-- | net/tools/dump_cache/upgrade_win.cc | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/net/tools/dump_cache/dump_files.cc b/net/tools/dump_cache/dump_files.cc index ffef1c8..7f4fb58 100644 --- a/net/tools/dump_cache/dump_files.cc +++ b/net/tools/dump_cache/dump_files.cc @@ -16,14 +16,14 @@ #include "base/file_util.h" #include "base/files/file_enumerator.h" #include "base/format_macros.h" -#include "base/message_loop.h" +#include "base/message_loop/message_loop.h" #include "net/base/file_stream.h" #include "net/disk_cache/block_files.h" #include "net/disk_cache/disk_format.h" #include "net/disk_cache/mapped_file.h" #include "net/disk_cache/stats.h" -#include "net/disk_cache/storage_block.h" #include "net/disk_cache/storage_block-inl.h" +#include "net/disk_cache/storage_block.h" namespace { diff --git a/net/tools/dump_cache/simple_cache_dumper.cc b/net/tools/dump_cache/simple_cache_dumper.cc index 42429cd..dd7c18d 100644 --- a/net/tools/dump_cache/simple_cache_dumper.cc +++ b/net/tools/dump_cache/simple_cache_dumper.cc @@ -8,7 +8,7 @@ #include "base/command_line.h" #include "base/logging.h" #include "base/memory/scoped_ptr.h" -#include "base/message_loop.h" +#include "base/message_loop/message_loop.h" #include "base/message_loop/message_loop_proxy.h" #include "base/threading/thread.h" #include "net/base/cache_type.h" diff --git a/net/tools/dump_cache/upgrade_win.cc b/net/tools/dump_cache/upgrade_win.cc index c24c67d..6c7def9 100644 --- a/net/tools/dump_cache/upgrade_win.cc +++ b/net/tools/dump_cache/upgrade_win.cc @@ -8,7 +8,7 @@ #include "base/bind_helpers.h" #include "base/logging.h" #include "base/memory/scoped_ptr.h" -#include "base/message_loop.h" +#include "base/message_loop/message_loop.h" #include "base/strings/string_number_conversions.h" #include "base/strings/string_util.h" #include "base/threading/thread.h" |