| Index: remoting/host/local_input_monitor_thread_linux.h
|
| diff --git a/remoting/host/local_input_monitor_thread_linux.h b/remoting/host/local_input_monitor_thread_linux.h
|
| index d30e7c4b8992cf65beaa1fdb2a328b2dbfe1a88f..bc4eb9b8c059f702e7c437e466319dc69a754696 100644
|
| --- a/remoting/host/local_input_monitor_thread_linux.h
|
| +++ b/remoting/host/local_input_monitor_thread_linux.h
|
| @@ -6,6 +6,7 @@
|
| #define LOCAL_INPUT_MONITOR_THREAD_LINUX_H_
|
|
|
| #include "base/compiler_specific.h"
|
| +#include "base/memory/ref_counted.h"
|
| #include "base/threading/simple_thread.h"
|
| #include "third_party/skia/include/core/SkPoint.h"
|
|
|
| @@ -27,7 +28,7 @@ class LocalInputMonitorThread : public base::SimpleThread {
|
| void LocalKeyPressed(int key_code, bool down);
|
|
|
| private:
|
| - ChromotingHost* host_;
|
| + scoped_refptr<ChromotingHost> host_;
|
| int wakeup_pipe_[2];
|
| Display* display_;
|
| bool alt_pressed_;
|
|
|