diff options
Diffstat (limited to 'ipc/ipc_channel_factory.cc')
-rw-r--r-- | ipc/ipc_channel_factory.cc | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/ipc/ipc_channel_factory.cc b/ipc/ipc_channel_factory.cc index f553203..9bcaa75 100644 --- a/ipc/ipc_channel_factory.cc +++ b/ipc/ipc_channel_factory.cc @@ -15,12 +15,9 @@ class PlatformChannelFactory : public ChannelFactory { : handle_(handle), mode_(mode) { } - virtual std::string GetName() const override { - return handle_.name; - } + std::string GetName() const override { return handle_.name; } - virtual scoped_ptr<Channel> BuildChannel( - Listener* listener) override { + scoped_ptr<Channel> BuildChannel(Listener* listener) override { return Channel::Create(handle_, mode_, listener); } |