diff options
Diffstat (limited to 'ipc/ipc_channel_nacl.h')
-rw-r--r-- | ipc/ipc_channel_nacl.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/ipc/ipc_channel_nacl.h b/ipc/ipc_channel_nacl.h index cffa34a..2747263 100644 --- a/ipc/ipc_channel_nacl.h +++ b/ipc/ipc_channel_nacl.h @@ -7,6 +7,7 @@ #pragma once #include "ipc/ipc_channel.h" +#include "ipc/ipc_channel_reader.h" namespace IPC { @@ -33,6 +34,13 @@ class Channel::ChannelImpl : public internal::ChannelReader { void ResetToAcceptingConnectionState(); static bool IsNamedServerInitialized(const std::string& channel_id); + virtual ReadState ReadData(char* buffer, + int buffer_len, + int* bytes_read) OVERRIDE; + virtual bool WillDispatchInputMessage(Message* msg) OVERRIDE; + virtual bool DidEmptyInputBuffers() OVERRIDE; + virtual void HandleHelloMessage(const Message& msg) OVERRIDE; + private: DISALLOW_IMPLICIT_CONSTRUCTORS(ChannelImpl); }; |