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.h | |
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.h')
-rw-r--r-- | ipc/ipc_channel.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ipc/ipc_channel.h b/ipc/ipc_channel.h index a7982e5..2d8d449 100644 --- a/ipc/ipc_channel.h +++ b/ipc/ipc_channel.h @@ -143,8 +143,7 @@ class IPC_EXPORT Channel : public Sender { static scoped_ptr<Channel> CreateServer( const IPC::ChannelHandle &channel_handle, Listener* listener); - - virtual ~Channel(); + ~Channel() override; // Connect the pipe. On the server side, this will initiate // waiting for connections. On the client, it attempts to |