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

Unified Diff: remoting/client/normalizing_input_filter_cros.h

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
Index: remoting/client/normalizing_input_filter_cros.h
diff --git a/remoting/client/normalizing_input_filter_cros.h b/remoting/client/normalizing_input_filter_cros.h
index 0dfa805ae9cc07b9ea435752b2392b7acd5cfe17..98661945c6b277c5e582e9bee2d2fb0f11652c31 100644
--- a/remoting/client/normalizing_input_filter_cros.h
+++ b/remoting/client/normalizing_input_filter_cros.h
@@ -5,6 +5,9 @@
#ifndef REMOTING_CLIENT_NORMALIZING_INPUT_FILTER_CROS_H_
#define REMOTING_CLIENT_NORMALIZING_INPUT_FILTER_CROS_H_
+#include <stdint.h>
+
+#include "base/macros.h"
#include "remoting/proto/event.pb.h"
#include "remoting/protocol/input_filter.h"
@@ -49,7 +52,7 @@ class NormalizingInputFilterCros : public protocol::InputFilter {
bool deferred_key_is_rewriting_;
// Stores the code of the OSKey while it is pressed for use as a Modifier.
- uint32 modifying_key_;
+ uint32_t modifying_key_;
// True if the left or right Alt keys are pressed, respectively.
bool left_alt_is_pressed_;
« no previous file with comments | « remoting/client/key_event_mapper_unittest.cc ('k') | remoting/client/normalizing_input_filter_cros_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698