diff options
author | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-12 22:41:54 +0000 |
---|---|---|
committer | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-12 22:41:54 +0000 |
commit | 56d01f63dc6ddb958dd8ce1d0c711ed87c3f0180 (patch) | |
tree | aa11ad8a1871b967fe136aa5900d6de8023544ad /net | |
parent | 9f9f86ce20db46dfed79eff111eed7a2f3bff48d (diff) | |
download | chromium_src-56d01f63dc6ddb958dd8ce1d0c711ed87c3f0180.zip chromium_src-56d01f63dc6ddb958dd8ce1d0c711ed87c3f0180.tar.gz chromium_src-56d01f63dc6ddb958dd8ce1d0c711ed87c3f0180.tar.bz2 |
Remove unneeded uses of logging.h in header files.
Review URL: http://codereview.chromium.org/43148
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11590 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net')
-rw-r--r-- | net/base/file_stream.h | 1 | ||||
-rw-r--r-- | net/base/listen_socket_unittest.h | 1 | ||||
-rw-r--r-- | net/disk_cache/mapped_file_posix.cc | 1 | ||||
-rw-r--r-- | net/disk_cache/mapped_file_win.cc | 1 | ||||
-rw-r--r-- | net/disk_cache/mem_backend_impl.cc | 1 | ||||
-rw-r--r-- | net/disk_cache/mem_entry_impl.cc | 1 | ||||
-rw-r--r-- | net/ftp/ftp_network_transaction.cc | 1 | ||||
-rw-r--r-- | net/http/http_cache.h | 1 |
8 files changed, 7 insertions, 1 deletions
diff --git a/net/base/file_stream.h b/net/base/file_stream.h index 470c3c6..807ea55 100644 --- a/net/base/file_stream.h +++ b/net/base/file_stream.h @@ -12,6 +12,7 @@ #include "base/file_path.h" #include "base/platform_file.h" +#include "base/scoped_ptr.h" #include "net/base/completion_callback.h" namespace net { diff --git a/net/base/listen_socket_unittest.h b/net/base/listen_socket_unittest.h index 1272bb1..f9a9e0e 100644 --- a/net/base/listen_socket_unittest.h +++ b/net/base/listen_socket_unittest.h @@ -18,7 +18,6 @@ #include "base/thread.h" #include "base/basictypes.h" -#include "base/logging.h" #include "base/message_loop.h" #include "base/string_util.h" #include "base/thread.h" diff --git a/net/disk_cache/mapped_file_posix.cc b/net/disk_cache/mapped_file_posix.cc index a170f35..9f69c4c 100644 --- a/net/disk_cache/mapped_file_posix.cc +++ b/net/disk_cache/mapped_file_posix.cc @@ -7,6 +7,7 @@ #include <errno.h> #include <sys/mman.h> +#include "base/logging.h" #include "net/disk_cache/disk_cache.h" namespace disk_cache { diff --git a/net/disk_cache/mapped_file_win.cc b/net/disk_cache/mapped_file_win.cc index c02711c..f573a93 100644 --- a/net/disk_cache/mapped_file_win.cc +++ b/net/disk_cache/mapped_file_win.cc @@ -4,6 +4,7 @@ #include "net/disk_cache/mapped_file.h" +#include "base/logging.h" #include "net/disk_cache/disk_cache.h" namespace disk_cache { diff --git a/net/disk_cache/mem_backend_impl.cc b/net/disk_cache/mem_backend_impl.cc index 660066b..0b8802a 100644 --- a/net/disk_cache/mem_backend_impl.cc +++ b/net/disk_cache/mem_backend_impl.cc @@ -4,6 +4,7 @@ #include "net/disk_cache/mem_backend_impl.h" +#include "base/logging.h" #include "base/sys_info.h" #include "net/disk_cache/cache_util.h" #include "net/disk_cache/mem_entry_impl.h" diff --git a/net/disk_cache/mem_entry_impl.cc b/net/disk_cache/mem_entry_impl.cc index e3b078f..77e1b32 100644 --- a/net/disk_cache/mem_entry_impl.cc +++ b/net/disk_cache/mem_entry_impl.cc @@ -4,6 +4,7 @@ #include "net/disk_cache/mem_entry_impl.h" +#include "base/logging.h" #include "net/base/io_buffer.h" #include "net/base/net_errors.h" #include "net/disk_cache/mem_backend_impl.h" diff --git a/net/ftp/ftp_network_transaction.cc b/net/ftp/ftp_network_transaction.cc index f40a28d..3ace779 100644 --- a/net/ftp/ftp_network_transaction.cc +++ b/net/ftp/ftp_network_transaction.cc @@ -5,6 +5,7 @@ #include "net/ftp/ftp_network_transaction.h" #include "base/compiler_specific.h" +#include "base/logging.h" #include "net/base/client_socket.h" #include "net/base/net_errors.h" #include "net/ftp/ftp_network_session.h" diff --git a/net/http/http_cache.h b/net/http/http_cache.h index 03b8a83..297c8d5 100644 --- a/net/http/http_cache.h +++ b/net/http/http_cache.h @@ -19,6 +19,7 @@ #include "base/basictypes.h" #include "base/hash_tables.h" +#include "base/scoped_ptr.h" #include "base/task.h" #include "net/http/http_transaction_factory.h" |