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

Unified Diff: remoting/client/plugin/chromoting_instance.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/plugin/chromoting_instance.h
diff --git a/remoting/client/plugin/chromoting_instance.h b/remoting/client/plugin/chromoting_instance.h
index 9339ded09c0090241359a2126aa15137118d2e7f..9eba3d1d4ab1795c68ae9935708c7802c9137e8b 100644
--- a/remoting/client/plugin/chromoting_instance.h
+++ b/remoting/client/plugin/chromoting_instance.h
@@ -5,8 +5,12 @@
#ifndef REMOTING_CLIENT_PLUGIN_CHROMOTING_INSTANCE_H_
#define REMOTING_CLIENT_PLUGIN_CHROMOTING_INSTANCE_H_
+#include <stddef.h>
+#include <stdint.h>
+
#include <string>
+#include "base/macros.h"
#include "base/memory/scoped_ptr.h"
#include "base/memory/weak_ptr.h"
#include "base/thread_task_runner_handle.h"
@@ -165,14 +169,14 @@ class ChromotingInstance : public ClientUserInterface,
// Updates the specified UMA enumeration histogram with the input value.
void UpdateUmaEnumHistogram(const std::string& histogram_name,
- int64 value,
+ int64_t value,
int histogram_max);
// Updates the specified UMA custom counts or custom times histogram with the
// input value.
void UpdateUmaCustomHistogram(bool is_custom_counts_histogram,
const std::string& histogram_name,
- int64 value,
+ int64_t value,
int histogram_min,
int histogram_max,
int histogram_buckets);
@@ -224,7 +228,7 @@ class ChromotingInstance : public ClientUserInterface,
scoped_ptr<base::DictionaryValue> data);
// Posts trapped keys to the web-app to handle.
- void SendTrappedKey(uint32 usb_keycode, bool pressed);
+ void SendTrappedKey(uint32_t usb_keycode, bool pressed);
// Callback for DelegatingSignalStrategy.
void SendOutgoingIq(const std::string& iq);
« no previous file with comments | « remoting/client/normalizing_input_filter_win_unittest.cc ('k') | remoting/client/plugin/chromoting_instance.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698