diff options
author | ajwong@chromium.org <ajwong@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-21 18:05:41 +0000 |
---|---|---|
committer | ajwong@chromium.org <ajwong@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-21 18:05:41 +0000 |
commit | c62dd9d42bd87964a131adc688d0c70f63cc4cac (patch) | |
tree | b57f3bc0843d2acace088498ecb40e0bfc213b6c /net/base | |
parent | b6bb36e2e8c9a09b4fd733bf74b60a6f02a5a7e9 (diff) | |
download | chromium_src-c62dd9d42bd87964a131adc688d0c70f63cc4cac.zip chromium_src-c62dd9d42bd87964a131adc688d0c70f63cc4cac.tar.gz chromium_src-c62dd9d42bd87964a131adc688d0c70f63cc4cac.tar.bz2 |
Delete Tracked, and move Location to its own file.
The Birth/Death tracking of tasks has been moved out-of-band into MessageLoop's PendingTask structure.
Thus, Task no longer needs to inherit from Tracked. Since Task was the only child of Tracked, delete the Tracked class and move Location to its own file.
BUG=none
TEST=builds
Review URL: http://codereview.chromium.org/7879006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@102132 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/base')
-rw-r--r-- | net/base/dnsrr_resolver.cc | 1 | ||||
-rw-r--r-- | net/base/keygen_handler_unittest.cc | 1 | ||||
-rw-r--r-- | net/base/origin_bound_cert_service.cc | 1 | ||||
-rw-r--r-- | net/base/test_root_certs_openssl.cc | 2 |
4 files changed, 4 insertions, 1 deletions
diff --git a/net/base/dnsrr_resolver.cc b/net/base/dnsrr_resolver.cc index e0d43d9..a38ce40 100644 --- a/net/base/dnsrr_resolver.cc +++ b/net/base/dnsrr_resolver.cc @@ -12,6 +12,7 @@ #include <windns.h> #endif +#include "base/location.h" #include "base/memory/scoped_ptr.h" #include "base/memory/singleton.h" #include "base/message_loop.h" diff --git a/net/base/keygen_handler_unittest.cc b/net/base/keygen_handler_unittest.cc index 52c7edf..f926311 100644 --- a/net/base/keygen_handler_unittest.cc +++ b/net/base/keygen_handler_unittest.cc @@ -8,6 +8,7 @@ #include "build/build_config.h" #include "base/base64.h" +#include "base/location.h" #include "base/logging.h" #include "base/task.h" #include "base/threading/worker_pool.h" diff --git a/net/base/origin_bound_cert_service.cc b/net/base/origin_bound_cert_service.cc index 4f53fc3..8f7c4cb 100644 --- a/net/base/origin_bound_cert_service.cc +++ b/net/base/origin_bound_cert_service.cc @@ -7,6 +7,7 @@ #include <limits> #include "base/compiler_specific.h" +#include "base/location.h" #include "base/logging.h" #include "base/memory/ref_counted.h" #include "base/memory/scoped_ptr.h" diff --git a/net/base/test_root_certs_openssl.cc b/net/base/test_root_certs_openssl.cc index 6016e33..e01d5c9 100644 --- a/net/base/test_root_certs_openssl.cc +++ b/net/base/test_root_certs_openssl.cc @@ -7,8 +7,8 @@ #include <openssl/err.h> #include <openssl/x509v3.h> +#include "base/location.h" #include "base/logging.h" -#include "base/tracked.h" #include "crypto/openssl_util.h" #include "net/base/x509_certificate.h" |