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

Unified Diff: mojo/edk/system/channel_posix.cc

Issue 2039713004: [mojo-edk] Make the Mojo EDK compile under NaCl. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix windows build. Created 4 years, 6 months 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
Index: mojo/edk/system/channel_posix.cc
diff --git a/mojo/edk/system/channel_posix.cc b/mojo/edk/system/channel_posix.cc
index 72c559bf6aadf6305efa3f11d61862fab537b067..2628d231c47ebd09ac9bf079b59e799b3fc837c6 100644
--- a/mojo/edk/system/channel_posix.cc
+++ b/mojo/edk/system/channel_posix.cc
@@ -5,7 +5,10 @@
#include "mojo/edk/system/channel.h"
#include <errno.h>
+#include <sys/socket.h>
+#if !defined(OS_NACL)
#include <sys/uio.h>
+#endif
#include <algorithm>
#include <deque>

Powered by Google App Engine
This is Rietveld 408576698