Index: ipc/attachment_broker.h |
diff --git a/ipc/attachment_broker.h b/ipc/attachment_broker.h |
index 715c5e594f5b3aae776c508624a1ba7d29379729..6bee1b29643aef464132ad9d6decb15ee8c5afb6 100644 |
--- a/ipc/attachment_broker.h |
+++ b/ipc/attachment_broker.h |
@@ -9,6 +9,7 @@ |
#include "base/process/process_handle.h" |
#include "ipc/brokerable_attachment.h" |
#include "ipc/ipc_export.h" |
+#include "ipc/ipc_listener.h" |
namespace IPC { |
@@ -26,10 +27,10 @@ class IPC_EXPORT SupportsAttachmentBrokering { |
// Responsible for brokering attachments to Chrome IPC messages. On platforms |
// that support attachment brokering, every IPC channel should have a reference |
// to a AttachmentBroker. |
-class IPC_EXPORT AttachmentBroker { |
+class IPC_EXPORT AttachmentBroker : public Listener { |
public: |
AttachmentBroker() {} |
- virtual ~AttachmentBroker() {} |
+ ~AttachmentBroker() override {} |
// Sends |attachment| to |destination_process|. The implementation uses an |
// IPC::Channel to communicate with the broker process. This may be the same |