Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(170)

Unified Diff: remoting/protocol/input_filter_unittest.cc

Issue 1542203002: Switch to standard integer types in remoting/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@int-remoting-host
Patch Set: Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « remoting/protocol/input_filter.h ('k') | remoting/protocol/input_stub.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
« no previous file with comments | « remoting/protocol/input_filter.h ('k') | remoting/protocol/input_stub.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698