diff options
Diffstat (limited to 'third_party/tcmalloc/chromium/src/sampler.h')
| -rw-r--r-- | third_party/tcmalloc/chromium/src/sampler.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/third_party/tcmalloc/chromium/src/sampler.h b/third_party/tcmalloc/chromium/src/sampler.h index fa9e554..8e67fb0 100644 --- a/third_party/tcmalloc/chromium/src/sampler.h +++ b/third_party/tcmalloc/chromium/src/sampler.h @@ -36,8 +36,13 @@ #define TCMALLOC_SAMPLER_H_ #include "config.h" -#include "common.h" -#include "static_vars.h" +#include <stddef.h> // for size_t +#ifdef HAVE_STDINT_H +#include <stdint.h> // for uint64_t, uint32_t, int32_t +#endif +#include <string.h> // for memcpy +#include "base/basictypes.h" // for ASSERT +#include "internal_logging.h" // for ASSERT namespace tcmalloc { |
