diff options
author | dcheng <dcheng@chromium.org> | 2014-10-21 06:52:36 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-10-21 13:53:03 +0000 |
commit | 39be52ebbd6681c7d79ad63e2a0ab028075af0c2 (patch) | |
tree | 332dfc12477f67daae2f27b933a65ad12e83e2e1 /ipc/ipc_channel_factory.cc | |
parent | f85fa223ead04d184ad8a9843042fac4a476c78c (diff) | |
download | chromium_src-39be52ebbd6681c7d79ad63e2a0ab028075af0c2.zip chromium_src-39be52ebbd6681c7d79ad63e2a0ab028075af0c2.tar.gz chromium_src-39be52ebbd6681c7d79ad63e2a0ab028075af0c2.tar.bz2 |
Standardize usage of virtual/override/final in ipc/
This patch was automatically generated by applying clang fixit hints
generated by the plugin to the source tree.
BUG=417463
TBR=agl@chromium.org
Review URL: https://codereview.chromium.org/645623006
Cr-Commit-Position: refs/heads/master@{#300481}
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); } |