Index: ipc/ipc_channel_nacl.h |
diff --git a/ipc/ipc_channel_nacl.h b/ipc/ipc_channel_nacl.h |
index be55011a6753259393fa4528278e41d498122dc0..223addd6033a417cf113b72e4a6efe1bf77fb72c 100644 |
--- a/ipc/ipc_channel_nacl.h |
+++ b/ipc/ipc_channel_nacl.h |
@@ -75,12 +75,6 @@ class ChannelNacl : public Channel, |
// The pipe used for communication. |
int pipe_; |
- // The "name" of our pipe. On Windows this is the global identifier for |
- // the pipe. On POSIX it's used as a key in a local map of file descriptors. |
- // For NaCl, we don't actually support looking up file descriptors by name, |
- // and it's only used for debug information. |
- std::string pipe_name_; |
- |
// We use a thread for reading, so that we can simply block on reading and |
// post the received data back to the main thread to be properly interleaved |
// with other tasks in the MessagePump. |