Index: trunk/src/remoting/host/local_input_monitor_win.cc |
=================================================================== |
--- trunk/src/remoting/host/local_input_monitor_win.cc (revision 201972) |
+++ trunk/src/remoting/host/local_input_monitor_win.cc (working copy) |
@@ -11,8 +11,8 @@ |
#include "base/single_thread_task_runner.h" |
#include "base/stringprintf.h" |
#include "base/threading/non_thread_safe.h" |
-#include "base/win/message_window.h" |
#include "remoting/host/client_session_control.h" |
+#include "remoting/host/win/message_window.h" |
#include "third_party/skia/include/core/SkPoint.h" |
namespace remoting { |
@@ -37,7 +37,7 @@ |
private: |
// The actual implementation resides in LocalInputMonitorWin::Core class. |
class Core : public base::RefCountedThreadSafe<Core>, |
- public base::win::MessageWindow::Delegate { |
+ public win::MessageWindow::Delegate { |
public: |
Core(scoped_refptr<base::SingleThreadTaskRunner> caller_task_runner, |
scoped_refptr<base::SingleThreadTaskRunner> ui_task_runner, |
@@ -56,7 +56,7 @@ |
// Handles WM_INPUT messages. |
LRESULT OnInput(HRAWINPUT input_handle); |
- // base::win::MessageWindow::Delegate interface. |
+ // win::MessageWindow::Delegate interface. |
virtual bool HandleMessage(HWND hwnd, |
UINT message, |
WPARAM wparam, |
@@ -70,7 +70,7 @@ |
scoped_refptr<base::SingleThreadTaskRunner> ui_task_runner_; |
// Used to receive raw input. |
- scoped_ptr<base::win::MessageWindow> window_; |
+ scoped_ptr<win::MessageWindow> window_; |
// Points to the object receiving mouse event notifications. |
base::WeakPtr<ClientSessionControl> client_session_control_; |
@@ -127,7 +127,7 @@ |
void LocalInputMonitorWin::Core::StartOnUiThread() { |
DCHECK(ui_task_runner_->BelongsToCurrentThread()); |
- window_.reset(new base::win::MessageWindow()); |
+ window_.reset(new win::MessageWindow()); |
if (!window_->Create(this)) { |
LOG_GETLASTERROR(ERROR) << "Failed to create the raw input window"; |
window_.reset(); |