Index: ipc/ipc_channel_mojo.h |
diff --git a/ipc/ipc_channel_mojo.h b/ipc/ipc_channel_mojo.h |
index c267649dd849530f4f648982f3e4f5db90dd3019..774a82a2627ddaadb86bfee0413f954fa358006f 100644 |
--- a/ipc/ipc_channel_mojo.h |
+++ b/ipc/ipc_channel_mojo.h |
@@ -7,9 +7,7 @@ |
#include <stdint.h> |
-#include <map> |
#include <memory> |
-#include <string> |
#include <vector> |
#include "base/macros.h" |
@@ -39,7 +37,6 @@ |
// |
class IPC_EXPORT ChannelMojo |
: public Channel, |
- public Channel::AssociatedInterfaceSupport, |
public MojoBootstrap::Delegate, |
public NON_EXPORTED_BASE(internal::MessagePipeReader::Delegate) { |
public: |
@@ -65,7 +62,6 @@ |
bool IsSendThreadSafe() const override; |
base::ProcessId GetPeerPID() const override; |
base::ProcessId GetSelfPID() const override; |
- Channel::AssociatedInterfaceSupport* GetAssociatedInterfaceSupport() override; |
#if defined(OS_POSIX) && !defined(OS_NACL_SFI) |
int GetClientFileDescriptor() const override; |
@@ -86,9 +82,6 @@ |
mojom::ChannelAssociatedRequest receive_channel, |
int32_t peer_pid) override; |
void OnBootstrapError() override; |
- void OnAssociatedInterfaceRequest( |
- const std::string& name, |
- mojo::ScopedInterfaceEndpointHandle handle) override; |
// MessagePipeReader::Delegate |
void OnMessageReceived(const Message& message) override; |
@@ -103,15 +96,6 @@ |
mojom::ChannelAssociatedRequest receiver, |
base::ProcessId peer_pid); |
- // Channel::AssociatedInterfaceSupport: |
- mojo::AssociatedGroup* GetAssociatedGroup() override; |
- void AddGenericAssociatedInterface( |
- const std::string& name, |
- const GenericAssociatedInterfaceFactory& factory) override; |
- void GetGenericRemoteAssociatedInterface( |
- const std::string& name, |
- mojo::ScopedInterfaceEndpointHandle handle) override; |
- |
// ChannelMojo needs to kill its MessagePipeReader in delayed manner |
// because the channel wants to kill these readers during the |
// notifications invoked by them. |
@@ -123,9 +107,6 @@ |
const mojo::MessagePipeHandle pipe_; |
std::unique_ptr<MojoBootstrap> bootstrap_; |
Listener* listener_; |
- |
- std::map<std::string, GenericAssociatedInterfaceFactory> |
- associated_interfaces_; |
// Guards access to the fields below. |
mutable base::Lock lock_; |