| Index: remoting/host/input_injector_mac.cc
|
| diff --git a/remoting/host/input_injector_mac.cc b/remoting/host/input_injector_mac.cc
|
| index fe6411bc55e9f732b73e4233a8b29c47d25aa294..44429bbdb34fe186105999e4291cc26b39f9d472 100644
|
| --- a/remoting/host/input_injector_mac.cc
|
| +++ b/remoting/host/input_injector_mac.cc
|
| @@ -340,10 +340,16 @@ InputInjectorMac::Core::~Core() {}
|
|
|
| } // namespace
|
|
|
| +// static
|
| scoped_ptr<InputInjector> InputInjector::Create(
|
| scoped_refptr<base::SingleThreadTaskRunner> main_task_runner,
|
| scoped_refptr<base::SingleThreadTaskRunner> ui_task_runner) {
|
| return make_scoped_ptr(new InputInjectorMac(main_task_runner));
|
| }
|
|
|
| +// static
|
| +bool InputInjector::SupportsTouchEvents() {
|
| + return false;
|
| +}
|
| +
|
| } // namespace remoting
|
|
|