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

Unified Diff: ipc/ipc_channel_posix.h

Issue 12386010: Implement IPC::ChannelFactory, a class that accept()s on a UNIX socket. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Use base::FilePath instead of std::string in ChannelFactory's constructor. Created 7 years, 10 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: ipc/ipc_channel_posix.h
diff --git a/ipc/ipc_channel_posix.h b/ipc/ipc_channel_posix.h
index 38e14ef14b684f5fc7f76a1386b4a4aae91ff403..64b8f611c729774e5a7fff0e3740aa28a4f4530f 100644
--- a/ipc/ipc_channel_posix.h
+++ b/ipc/ipc_channel_posix.h
@@ -194,12 +194,6 @@ class Channel::ChannelImpl : public internal::ChannelReader,
DISALLOW_IMPLICIT_CONSTRUCTORS(ChannelImpl);
};
-// The maximum length of the name of a pipe for MODE_NAMED_SERVER or
-// MODE_NAMED_CLIENT if you want to pass in your own socket.
-// The standard size on linux is 108, mac is 104. To maintain consistency
-// across platforms we standardize on the smaller value.
-static const size_t kMaxPipeNameLength = 104;
-
} // namespace IPC
#endif // IPC_IPC_CHANNEL_POSIX_H_

Powered by Google App Engine
This is Rietveld 408576698