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

Unified Diff: content/child/child_process.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/child_process.h ('k') | content/child/child_resource_message_filter.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/child/child_process.cc
diff --git a/content/child/child_process.cc b/content/child/child_process.cc
index db6964dcad3ff6a37c2a900fa5e2aab0d75f436c..7cd842377c0ebe46dad52f7bebb0c2b7100d6984 100644
--- a/content/child/child_process.cc
+++ b/content/child/child_process.cc
@@ -4,9 +4,7 @@
#include "content/child/child_process.h"
-#if defined(OS_POSIX) && !defined(OS_ANDROID)
-#include <signal.h> // For SigUSR1Handler below.
-#endif
+#include <string.h>
#include "base/lazy_instance.h"
#include "base/message_loop/message_loop.h"
@@ -16,6 +14,7 @@
#include "base/strings/utf_string_conversions.h"
#include "base/threading/thread.h"
#include "base/threading/thread_local.h"
+#include "build/build_config.h"
#include "content/child/child_thread_impl.h"
#if defined(OS_ANDROID)
@@ -23,6 +22,7 @@
#endif
#if defined(OS_POSIX) && !defined(OS_ANDROID)
+#include <signal.h>
static void SigUSR1Handler(int signal) { }
#endif
« no previous file with comments | « content/child/child_process.h ('k') | content/child/child_resource_message_filter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698