diff options
author | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-18 17:19:50 +0000 |
---|---|---|
committer | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-18 17:19:50 +0000 |
commit | 3603722dc0afac40a60d91d7340da9f3da4e90d2 (patch) | |
tree | c3025bfa1c1dea98d4588a18fce3801fe0b364f0 /net | |
parent | d54f6a00bbad514c09793c219ec2e5f3819c1f08 (diff) | |
download | chromium_src-3603722dc0afac40a60d91d7340da9f3da4e90d2.zip chromium_src-3603722dc0afac40a60d91d7340da9f3da4e90d2.tar.gz chromium_src-3603722dc0afac40a60d91d7340da9f3da4e90d2.tar.bz2 |
Remove unneeded uses of base/ref_counted.h.
Review URL: http://codereview.chromium.org/48105
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11974 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net')
-rw-r--r-- | net/base/ssl_client_socket_unittest.cc | 1 | ||||
-rw-r--r-- | net/base/ssl_test_util.h | 4 | ||||
-rw-r--r-- | net/disk_cache/mapped_file.h | 1 | ||||
-rw-r--r-- | net/http/http_auth.h | 3 | ||||
-rw-r--r-- | net/http/http_vary_data.h | 1 |
5 files changed, 4 insertions, 6 deletions
diff --git a/net/base/ssl_client_socket_unittest.cc b/net/base/ssl_client_socket_unittest.cc index c8b87f4..2148dfb 100644 --- a/net/base/ssl_client_socket_unittest.cc +++ b/net/base/ssl_client_socket_unittest.cc @@ -2,7 +2,6 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "base/ref_counted.h" #include "net/base/address_list.h" #include "net/base/client_socket_factory.h" #include "net/base/host_resolver.h" diff --git a/net/base/ssl_test_util.h b/net/base/ssl_test_util.h index 67b550c..b75453b 100644 --- a/net/base/ssl_test_util.h +++ b/net/base/ssl_test_util.h @@ -5,12 +5,12 @@ #ifndef NET_BASE_SSL_TEST_UTIL_H_ #define NET_BASE_SSL_TEST_UTIL_H_ +#include "build/build_config.h" + #include <string> #include "base/file_path.h" #include "base/process_util.h" -#include "base/ref_counted.h" -#include "build/build_config.h" // TODO(dkegel): share this between net/base and // chrome/browser without putting it in net.lib diff --git a/net/disk_cache/mapped_file.h b/net/disk_cache/mapped_file.h index bf12df3..215a892 100644 --- a/net/disk_cache/mapped_file.h +++ b/net/disk_cache/mapped_file.h @@ -9,7 +9,6 @@ #include <string> -#include "base/ref_counted.h" #include "net/disk_cache/disk_format.h" #include "net/disk_cache/file.h" #include "net/disk_cache/file_block.h" diff --git a/net/http/http_auth.h b/net/http/http_auth.h index 041581e..8f594e2 100644 --- a/net/http/http_auth.h +++ b/net/http/http_auth.h @@ -5,9 +5,10 @@ #ifndef NET_HTTP_HTTP_AUTH_H_ #define NET_HTTP_HTTP_AUTH_H_ -#include "base/ref_counted.h" #include "net/http/http_util.h" +template <class T> class scoped_refptr; + namespace net { class HttpAuthHandler; diff --git a/net/http/http_vary_data.h b/net/http/http_vary_data.h index 5ce90c8..a96abe0 100644 --- a/net/http/http_vary_data.h +++ b/net/http/http_vary_data.h @@ -6,7 +6,6 @@ #define NET_HTTP_HTTP_VARY_DATA_H__ #include "base/md5.h" -#include "base/ref_counted.h" class Pickle; |