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

Unified Diff: remoting/host/chromoting_host.h

Issue 4975003: Introduce a fake HostStub since there's no need to handle it now (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: give HostStubFake Created 10 years, 1 month 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 | « no previous file | remoting/host/chromoting_host.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/chromoting_host.h
diff --git a/remoting/host/chromoting_host.h b/remoting/host/chromoting_host.h
index ab285ab6c59b32caa61295c08b67adea2596da1c..f3b908f8d63712f96ce96a48d3077d58a3b64f57 100644
--- a/remoting/host/chromoting_host.h
+++ b/remoting/host/chromoting_host.h
@@ -14,7 +14,6 @@
#include "remoting/host/heartbeat_sender.h"
#include "remoting/jingle_glue/jingle_client.h"
#include "remoting/jingle_glue/jingle_thread.h"
-#include "remoting/protocol/input_stub.h"
#include "remoting/protocol/session_manager.h"
#include "remoting/protocol/connection_to_client.h"
@@ -24,6 +23,8 @@ namespace remoting {
namespace protocol {
class ConnectionToClient;
+class HostStub;
+class InputStub;
class SessionConfig;
} // namespace protocol
@@ -133,6 +134,9 @@ class ChromotingHost : public base::RefCountedThreadSafe<ChromotingHost>,
// InputStub in the host executes input events received from the client.
scoped_ptr<protocol::InputStub> input_stub_;
+ // HostStub in the host executes control events received from the client.
+ scoped_ptr<protocol::HostStub> host_stub_;
+
// The libjingle client. This is used to connect to the talk network to
// receive connection requests from chromoting client.
scoped_refptr<JingleClient> jingle_client_;
« no previous file with comments | « no previous file | remoting/host/chromoting_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698