summaryrefslogtreecommitdiffstats
path: root/ipc
diff options
context:
space:
mode:
authorerikchen <erikchen@chromium.org>2015-06-17 16:08:48 -0700
committerCommit bot <commit-bot@chromium.org>2015-06-17 23:09:10 +0000
commit188d85d7e87f970715dcc55605c9ecaba5da5579 (patch)
treeb4a528cb81f6c1c7a7353f5ab5e8d1a16bac9896 /ipc
parent092b8b025ed32f3f6492746943030923a0937ae1 (diff)
downloadchromium_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.h2
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();