Index: remoting/host/input_injector_win.cc |
diff --git a/remoting/host/input_injector_win.cc b/remoting/host/input_injector_win.cc |
index 235f45e3ece43544f1235b89d91f0c68dcc40654..c40e1508fcc85814d7f00cfc44b6e29baabcf241 100644 |
--- a/remoting/host/input_injector_win.cc |
+++ b/remoting/host/input_injector_win.cc |
@@ -44,7 +44,7 @@ void SendKeyboardInput(uint32_t flags, uint16_t scancode) { |
} |
if (SendInput(1, &input, sizeof(INPUT)) == 0) |
- LOG_GETLASTERROR(ERROR) << "Failed to inject a key event"; |
+ PLOG(ERROR) << "Failed to inject a key event"; |
} |
using protocol::ClipboardEvent; |
@@ -316,7 +316,7 @@ void InputInjectorWin::Core::HandleMouse(const MouseEvent& event) { |
if (input.mi.dwFlags) { |
if (SendInput(1, &input, sizeof(INPUT)) == 0) |
- LOG_GETLASTERROR(ERROR) << "Failed to inject a mouse event"; |
+ PLOG(ERROR) << "Failed to inject a mouse event"; |
} |
} |