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

Unified Diff: blimp/net/blimp_connection.h

Issue 2439403003: Refactor BlimpConnection to TCPConnection (Closed)
Patch Set: Added missing Engine Transport Created 4 years, 2 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
Index: blimp/net/blimp_connection.h
diff --git a/blimp/net/blimp_connection.h b/blimp/net/blimp_connection.h
index 10450d0a2853b79f13282138a717f267136df8bc..3ac9132af536e1295bea2bd10c7f8b9b456b9e48 100644
--- a/blimp/net/blimp_connection.h
+++ b/blimp/net/blimp_connection.h
@@ -15,15 +15,11 @@
namespace blimp {
class BlimpMessageProcessor;
-class BlimpMessagePump;
-class BlimpMessageSender;
-class MessagePort;
// Encapsulates the state and logic used to exchange BlimpMessages over
// a network connection.
class BLIMP_NET_EXPORT BlimpConnection : public ConnectionErrorObserver {
public:
- explicit BlimpConnection(std::unique_ptr<MessagePort> message_port);
~BlimpConnection() override;
// Adds |observer| to the connection's error observer list.
@@ -35,10 +31,11 @@ class BLIMP_NET_EXPORT BlimpConnection : public ConnectionErrorObserver {
// Sets the processor which will take incoming messages for this connection.
// Can be set multiple times, but previously set processors are discarded.
// Caller retains the ownership of |processor|.
- virtual void SetIncomingMessageProcessor(BlimpMessageProcessor* processor);
+ virtual void SetIncomingMessageProcessor(
+ BlimpMessageProcessor* processor) = 0;
// Gets a processor for BrowserSession->BlimpConnection message routing.
- virtual BlimpMessageProcessor* GetOutgoingMessageProcessor();
+ virtual BlimpMessageProcessor* GetOutgoingMessageProcessor() = 0;
protected:
class EndConnectionFilter;
@@ -46,16 +43,16 @@ class BLIMP_NET_EXPORT BlimpConnection : public ConnectionErrorObserver {
BlimpConnection();
+ void AddEndConnectionProcessor(BlimpMessageProcessor* processor);
Wez 2016/11/09 22:47:17 Looking at the implementation, this is a simple-se
perumaal 2016/11/10 02:05:05 Got it, good point.
+
// ConnectionErrorObserver implementation.
void OnConnectionError(int error) override;
+ BlimpMessageProcessor* GetEndConnectionProcessor() const;
+
private:
- std::unique_ptr<MessagePort> message_port_;
- std::unique_ptr<BlimpMessagePump> message_pump_;
- std::unique_ptr<BlimpMessageSender> outgoing_msg_processor_;
- base::ObserverList<ConnectionErrorObserver> error_observers_;
std::unique_ptr<EndConnectionFilter> end_connection_filter_;
-
+ base::ObserverList<ConnectionErrorObserver> error_observers_;
DISALLOW_COPY_AND_ASSIGN(BlimpConnection);
};

Powered by Google App Engine
This is Rietveld 408576698