| Index: remoting/client/plugin/chromoting_instance.cc
|
| diff --git a/remoting/client/plugin/chromoting_instance.cc b/remoting/client/plugin/chromoting_instance.cc
|
| index 1671d71f7fa0c6bd493aea1d976410f4bb4c35fc..c72b578e25c7b45bb424e8d60f5e8cd7d290b2e0 100644
|
| --- a/remoting/client/plugin/chromoting_instance.cc
|
| +++ b/remoting/client/plugin/chromoting_instance.cc
|
| @@ -30,7 +30,6 @@
|
| #include "remoting/client/client_config.h"
|
| #include "remoting/client/chromoting_client.h"
|
| #include "remoting/client/frame_consumer_proxy.h"
|
| -#include "remoting/client/mouse_input_filter.h"
|
| #include "remoting/client/plugin/chromoting_scriptable_object.h"
|
| #include "remoting/client/plugin/pepper_input_handler.h"
|
| #include "remoting/client/plugin/pepper_view.h"
|
| @@ -39,6 +38,7 @@
|
| #include "remoting/protocol/connection_to_host.h"
|
| #include "remoting/protocol/host_stub.h"
|
| #include "remoting/protocol/input_event_tracker.h"
|
| +#include "remoting/protocol/mouse_input_filter.h"
|
|
|
| // Windows defines 'PostMessage', so we have to undef it.
|
| #if defined(PostMessage)
|
| @@ -387,7 +387,7 @@ void ChromotingInstance::Connect(const ClientConfig& config) {
|
|
|
| // Construct the input pipeline
|
| mouse_input_filter_.reset(
|
| - new MouseInputFilter(host_connection_->input_stub()));
|
| + new protocol::MouseInputFilter(host_connection_->input_stub()));
|
| mouse_input_filter_->set_input_size(view_->get_view_size());
|
| input_tracker_.reset(
|
| new protocol::InputEventTracker(mouse_input_filter_.get()));
|
|
|