From c62dd9d42bd87964a131adc688d0c70f63cc4cac Mon Sep 17 00:00:00 2001 From: "ajwong@chromium.org" Date: Wed, 21 Sep 2011 18:05:41 +0000 Subject: 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 --- net/disk_cache/file_posix.cc | 1 + net/disk_cache/in_flight_io.cc | 1 + 2 files changed, 2 insertions(+) (limited to 'net/disk_cache') diff --git a/net/disk_cache/file_posix.cc b/net/disk_cache/file_posix.cc index b767c17..6785a43 100644 --- a/net/disk_cache/file_posix.cc +++ b/net/disk_cache/file_posix.cc @@ -6,6 +6,7 @@ #include +#include "base/location.h" #include "base/logging.h" #include "base/threading/worker_pool.h" #include "net/base/net_errors.h" diff --git a/net/disk_cache/in_flight_io.cc b/net/disk_cache/in_flight_io.cc index 6f4b37c..5f0ea02 100644 --- a/net/disk_cache/in_flight_io.cc +++ b/net/disk_cache/in_flight_io.cc @@ -4,6 +4,7 @@ #include "net/disk_cache/in_flight_io.h" +#include "base/location.h" #include "base/logging.h" namespace disk_cache { -- cgit v1.1