diff options
author | hans@chromium.org <hans@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-17 12:18:16 +0000 |
---|---|---|
committer | hans@chromium.org <hans@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-17 12:18:16 +0000 |
commit | d5570a81ae4b4d315bcddb79457b9696a19863ef (patch) | |
tree | d7ae4a0edd4b868715490f5b6498339b4eeaad16 /base/debug | |
parent | e3a0ea00151706b7ae5d72a7279131d6acdd7273 (diff) | |
download | chromium_src-d5570a81ae4b4d315bcddb79457b9696a19863ef.zip chromium_src-d5570a81ae4b4d315bcddb79457b9696a19863ef.tar.gz chromium_src-d5570a81ae4b4d315bcddb79457b9696a19863ef.tar.bz2 |
Include base/stringprintf.h in base/debug/profiler.cc.
This is needed after r97067.
BUG=none
TEST=building with GYP_DEFINES="profiling=1" works
TBR=tfarina
Review URL: http://codereview.chromium.org/7624014
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@97128 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/debug')
-rw-r--r-- | base/debug/profiler.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/base/debug/profiler.cc b/base/debug/profiler.cc index 8597dac..e62b6b6 100644 --- a/base/debug/profiler.cc +++ b/base/debug/profiler.cc @@ -8,6 +8,7 @@ #include "base/process_util.h" #include "base/string_util.h" +#include "base/stringprintf.h" #if defined(ENABLE_PROFILING) && !defined(NO_TCMALLOC) #include "third_party/tcmalloc/chromium/src/google/profiler.h" @@ -62,4 +63,3 @@ bool BeingProfiled() { } // namespace debug } // namespace base - |