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

Unified Diff: remoting/client/plugin/chromoting_instance.h

Issue 8985007: Refactoring of the client-side input pipeline and scaling dimension management. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years 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: remoting/client/plugin/chromoting_instance.h
diff --git a/remoting/client/plugin/chromoting_instance.h b/remoting/client/plugin/chromoting_instance.h
index 427d420aced3ec1483002edd6ea70a8be750fcb1..c4d17f6a3ea14b47e81c3f3091f39a96803953bf 100644
--- a/remoting/client/plugin/chromoting_instance.h
+++ b/remoting/client/plugin/chromoting_instance.h
@@ -32,12 +32,14 @@ namespace remoting {
namespace protocol {
class ConnectionToHost;
+class KeyEventTracker;
} // namespace protocol
class ChromotingClient;
class ChromotingStats;
class ClientContext;
-class InputHandler;
+class MouseInputFilter;
+class PepperInputHandler;
class PepperView;
class PepperViewProxy;
class RectangleUpdateDecoder;
@@ -127,7 +129,9 @@ class ChromotingInstance : public pp::InstancePrivate {
// outstanding tasks on the pepper message loop.
scoped_refptr<PepperViewProxy> view_proxy_;
scoped_refptr<RectangleUpdateDecoder> rectangle_decoder_;
- scoped_ptr<InputHandler> input_handler_;
+ scoped_ptr<MouseInputFilter> mouse_input_filter_;
+ scoped_ptr<protocol::KeyEventTracker> key_event_tracker_;
+ scoped_ptr<PepperInputHandler> input_handler_;
scoped_ptr<ChromotingClient> client_;
// XmppProxy is a refcounted interface used to perform thread-switching and

Powered by Google App Engine
This is Rietveld 408576698