diff options
author | mostynb@opera.com <mostynb@opera.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-09-03 23:29:12 +0000 |
---|---|---|
committer | mostynb@opera.com <mostynb@opera.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-09-03 23:29:12 +0000 |
commit | c014f2b3a4509e83b1fed576bebceadb392ae3fb (patch) | |
tree | f513690600e9bdc07d9dd1238c7662f435a580e1 /base/tracked_objects.cc | |
parent | 2c9492bd57039784a0a7d54f4a8693f9afb38a28 (diff) | |
download | chromium_src-c014f2b3a4509e83b1fed576bebceadb392ae3fb.zip chromium_src-c014f2b3a4509e83b1fed576bebceadb392ae3fb.tar.gz chromium_src-c014f2b3a4509e83b1fed576bebceadb392ae3fb.tar.bz2 |
test IWYU fixups for base
These are some of the suggestions from running include-what-you-use[1]
on the base target.
[1] https://code.google.com/p/include-what-you-use/
BUG=259043
Review URL: https://chromiumcodereview.appspot.com/23540009
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@221067 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/tracked_objects.cc')
-rw-r--r-- | base/tracked_objects.cc | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/base/tracked_objects.cc b/base/tracked_objects.cc index 38963c2..0847d5f 100644 --- a/base/tracked_objects.cc +++ b/base/tracked_objects.cc @@ -4,22 +4,24 @@ #include "base/tracked_objects.h" -#include <math.h> +#include <limits.h> #include <stdlib.h> #include "base/compiler_specific.h" #include "base/debug/leak_annotations.h" -#include "base/format_macros.h" -#include "base/memory/scoped_ptr.h" -#include "base/port.h" +#include "base/logging.h" #include "base/process/process_handle.h" #include "base/profiler/alternate_timer.h" #include "base/strings/stringprintf.h" #include "base/third_party/valgrind/memcheck.h" -#include "base/threading/thread_restrictions.h" +#include "base/tracking_info.h" using base::TimeDelta; +namespace base { +class TimeDelta; +} + namespace tracked_objects { namespace { |