Index: ipc/ipc_channel.h |
=================================================================== |
--- ipc/ipc_channel.h (revision 158695) |
+++ ipc/ipc_channel.h (working copy) |
@@ -179,6 +179,7 @@ |
// ID. Even if true, the server may have already accepted a connection. |
static bool IsNamedServerInitialized(const std::string& channel_id); |
+#if !defined(OS_NACL) |
// Generates a channel ID that's non-predictable and unique. |
static std::string GenerateUniqueRandomChannelID(); |
@@ -187,6 +188,7 @@ |
// require additional this is simply calls GenerateUniqueRandomChannelID(). |
// For portability the prefix should not include the \ character. |
static std::string GenerateVerifiedChannelID(const std::string& prefix); |
+#endif |
#if defined(OS_LINUX) |
// Sandboxed processes live in a PID namespace, so when sending the IPC hello |