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

Unified Diff: content/child/content_child_helpers.cc

Issue 1544273002: Switch to standard integer types in content/. (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 | « content/child/content_child_helpers.h ('k') | content/child/database_util.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/child/content_child_helpers.cc
diff --git a/content/child/content_child_helpers.cc b/content/child/content_child_helpers.cc
index d6d62922d0229842a50a68434ba0e46aea951df1..4398bc067ae694eb5815a446f2dacbe1b873696c 100644
--- a/content/child/content_child_helpers.cc
+++ b/content/child/content_child_helpers.cc
@@ -4,15 +4,18 @@
#include "content/child/content_child_helpers.h"
-#if defined(OS_LINUX)
-#include <malloc.h>
-#endif
+#include <stdint.h>
#include "base/logging.h"
#include "base/memory/scoped_ptr.h"
#include "base/process/process_metrics.h"
+#include "build/build_config.h"
#include "v8/include/v8.h"
+#if defined(OS_LINUX)
+#include <malloc.h>
+#endif
+
namespace content {
#if defined(OS_LINUX) || defined(OS_ANDROID)
« no previous file with comments | « content/child/content_child_helpers.h ('k') | content/child/database_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698