Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(565)

Unified Diff: remoting/protocol/stream_message_pipe_adapter.h

Issue 1662673002: Add MessageChanneFactory interface and use it in ChannelDispatcherBase. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@framing
Patch Set: Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « remoting/protocol/message_channel_factory.h ('k') | remoting/protocol/stream_message_pipe_adapter.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/protocol/stream_message_pipe_adapter.h
diff --git a/remoting/protocol/stream_message_pipe_adapter.h b/remoting/protocol/stream_message_pipe_adapter.h
index 15f7e1ded5c6e999651dcce2877143fad9d9dc07..37d694ead35d715996e2c1e957f574b2c108279c 100644
--- a/remoting/protocol/stream_message_pipe_adapter.h
+++ b/remoting/protocol/stream_message_pipe_adapter.h
@@ -6,6 +6,7 @@
#define REMOTING_PROTOCOL_STREAM_MESSAGE_PIPE_ADAPTER_H_
#include "base/callback.h"
+#include "remoting/protocol/message_channel_factory.h"
#include "remoting/protocol/message_pipe.h"
#include "remoting/protocol/message_reader.h"
@@ -15,6 +16,7 @@ class BufferedSocketWriter;
namespace protocol {
class P2PStreamSocket;
+class StreamChannelFactory;
// MessagePipe implementation that sends and receives messages over a
// P2PStreamChannel.
@@ -43,6 +45,30 @@ class StreamMessagePipeAdapter : public MessagePipe {
DISALLOW_COPY_AND_ASSIGN(StreamMessagePipeAdapter);
};
+class StreamMessageChannelFactoryAdapter : public MessageChannelFactory {
+ public:
+ typedef base::Callback<void(int)> ErrorCallback;
+
+ StreamMessageChannelFactoryAdapter(
+ StreamChannelFactory* stream_channel_factory,
+ const ErrorCallback& error_callback);
+ ~StreamMessageChannelFactoryAdapter() override;
+
+ // MessageChannelFactory interface.
+ void CreateChannel(const std::string& name,
+ const ChannelCreatedCallback& callback) override;
+ void CancelChannelCreation(const std::string& name) override;
+
+ private:
+ void OnChannelCreated(const ChannelCreatedCallback& callback,
+ scoped_ptr<P2PStreamSocket> socket);
+
+ StreamChannelFactory* stream_channel_factory_;
+ ErrorCallback error_callback_;
+
+ DISALLOW_COPY_AND_ASSIGN(StreamMessageChannelFactoryAdapter);
+};
+
} // namespace protocol
} // namespace remoting
« no previous file with comments | « remoting/protocol/message_channel_factory.h ('k') | remoting/protocol/stream_message_pipe_adapter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698