Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(559)

Unified Diff: base/trace_event/malloc_dump_provider.cc

Issue 1546033002: Switch to standard integer types in base/trace_event/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « base/trace_event/java_heap_dump_provider_android.h ('k') | base/trace_event/memory_allocator_dump.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/trace_event/malloc_dump_provider.cc
diff --git a/base/trace_event/malloc_dump_provider.cc b/base/trace_event/malloc_dump_provider.cc
index 7f4ac5a125dee329006ed71ee3511161ace3e3fb..6f9aa9602f7334840489e17c1ca15c7c13198c74 100644
--- a/base/trace_event/malloc_dump_provider.cc
+++ b/base/trace_event/malloc_dump_provider.cc
@@ -4,15 +4,18 @@
#include "base/trace_event/malloc_dump_provider.h"
+#include <stddef.h>
+
+#include "base/allocator/allocator_extension.h"
+#include "base/trace_event/process_memory_dump.h"
+#include "build/build_config.h"
+
#if defined(OS_MACOSX)
#include <malloc/malloc.h>
#else
#include <malloc.h>
#endif
-#include "base/allocator/allocator_extension.h"
-#include "base/trace_event/process_memory_dump.h"
-
namespace base {
namespace trace_event {
« no previous file with comments | « base/trace_event/java_heap_dump_provider_android.h ('k') | base/trace_event/memory_allocator_dump.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698