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

Unified Diff: chrome/common/multi_process_lock_linux.cc

Issue 1548153002: Switch to standard integer types in chrome/. (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 | « chrome/common/media_galleries/pmp_test_util.cc ('k') | chrome/common/multi_process_lock_mac.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/multi_process_lock_linux.cc
diff --git a/chrome/common/multi_process_lock_linux.cc b/chrome/common/multi_process_lock_linux.cc
index 49ec99a896f1ff30fb0d939ee3cfe7f65b9b41a8..92cc2dc74abd5f3d2d0da21b1f428f9591b78352 100644
--- a/chrome/common/multi_process_lock_linux.cc
+++ b/chrome/common/multi_process_lock_linux.cc
@@ -4,13 +4,16 @@
#include "chrome/common/multi_process_lock.h"
+#include <stddef.h>
#include <stdio.h>
+#include <string.h>
#include <sys/socket.h>
#include <sys/un.h>
#include <unistd.h>
#include "base/compiler_specific.h"
#include "base/logging.h"
+#include "base/macros.h"
#include "base/posix/eintr_wrapper.h"
class MultiProcessLockLinux : public MultiProcessLock {
« no previous file with comments | « chrome/common/media_galleries/pmp_test_util.cc ('k') | chrome/common/multi_process_lock_mac.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698