| Index: remoting/protocol/input_filter_unittest.cc
|
| diff --git a/remoting/protocol/input_filter_unittest.cc b/remoting/protocol/input_filter_unittest.cc
|
| index 25b02ee683eb8c9ec236c64340c18fc1b9268a0a..952a1ebd3cecfbf125660dae7b6c3436389b0f85 100644
|
| --- a/remoting/protocol/input_filter_unittest.cc
|
| +++ b/remoting/protocol/input_filter_unittest.cc
|
| @@ -4,6 +4,8 @@
|
|
|
| #include "remoting/protocol/input_filter.h"
|
|
|
| +#include <stdint.h>
|
| +
|
| #include "remoting/proto/event.pb.h"
|
| #include "remoting/protocol/protocol_mock_objects.h"
|
| #include "remoting/protocol/test_event_matchers.h"
|
| @@ -19,7 +21,7 @@ using test::EqualsKeyEvent;
|
| using test::EqualsMouseMoveEvent;
|
| using test::EqualsTextEvent;
|
|
|
| -static KeyEvent NewKeyEvent(uint32 usb_keycode, bool pressed) {
|
| +static KeyEvent NewKeyEvent(uint32_t usb_keycode, bool pressed) {
|
| KeyEvent event;
|
| event.set_usb_keycode(usb_keycode);
|
| event.set_pressed(pressed);
|
|
|