diff options
author | erikchen <erikchen@chromium.org> | 2015-06-17 16:08:48 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-06-17 23:09:10 +0000 |
commit | 188d85d7e87f970715dcc55605c9ecaba5da5579 (patch) | |
tree | b4a528cb81f6c1c7a7353f5ab5e8d1a16bac9896 /ipc | |
parent | 092b8b025ed32f3f6492746943030923a0937ae1 (diff) | |
download | chromium_src-188d85d7e87f970715dcc55605c9ecaba5da5579.zip chromium_src-188d85d7e87f970715dcc55605c9ecaba5da5579.tar.gz chromium_src-188d85d7e87f970715dcc55605c9ecaba5da5579.tar.bz2 |
ipc: Remove virtual inheritance of SupportsAttachmentBrokering.
There is no need for ChannelReader to virtually inherit from
SupportsAttachmentBrokering.
BUG=501367
Review URL: https://codereview.chromium.org/1190783008
Cr-Commit-Position: refs/heads/master@{#334953}
Diffstat (limited to 'ipc')
-rw-r--r-- | ipc/ipc_channel_reader.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ipc/ipc_channel_reader.h b/ipc/ipc_channel_reader.h index 0fdc354..02006d9 100644 --- a/ipc/ipc_channel_reader.h +++ b/ipc/ipc_channel_reader.h @@ -25,7 +25,7 @@ namespace internal { // functionality that would benefit from being factored out. If we add // something like that in the future, it would be more appropriate to add it // here (and rename appropriately) rather than writing a different class. -class ChannelReader : virtual public SupportsAttachmentBrokering { +class ChannelReader : public SupportsAttachmentBrokering { public: explicit ChannelReader(Listener* listener); virtual ~ChannelReader(); |