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

Unified Diff: ipc/ipc_channel_nacl.h

Issue 2484943004: Remove unused parts of IPC::ChannelHandle. (Closed)
Patch Set: Created 4 years, 1 month 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: 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.

Powered by Google App Engine
This is Rietveld 408576698