Index: ipc/ipc_channel_nacl.cc |
=================================================================== |
--- ipc/ipc_channel_nacl.cc (revision 158695) |
+++ ipc/ipc_channel_nacl.cc (working copy) |
@@ -383,15 +383,4 @@ |
return channel_impl_->Send(message); |
} |
-// static |
-std::string Channel::GenerateVerifiedChannelID(const std::string& prefix) { |
- // A random name is sufficient validation on posix systems, so we don't need |
- // an additional shared secret. |
- std::string id = prefix; |
- if (!id.empty()) |
- id.append("."); |
- |
- return id.append(GenerateUniqueRandomChannelID()); |
-} |
- |
} // namespace IPC |