Switch to standard integer types in remoting/host/.
BUG=138542
[email protected]
Review URL: https://codereview.chromium.org/1547473005
Cr-Commit-Position: refs/heads/master@{#366676}
diff --git a/remoting/host/desktop_session_win.cc b/remoting/host/desktop_session_win.cc
index f3c0881..f973546 100644
--- a/remoting/host/desktop_session_win.cc
+++ b/remoting/host/desktop_session_win.cc
@@ -4,13 +4,14 @@
#include "remoting/host/desktop_session_win.h"
-#include <limits>
#include <sddl.h>
+#include <limits>
#include "base/base_switches.h"
#include "base/command_line.h"
#include "base/files/file_path.h"
#include "base/guid.h"
+#include "base/macros.h"
#include "base/memory/ref_counted.h"
#include "base/memory/scoped_ptr.h"
#include "base/memory/weak_ptr.h"
@@ -459,7 +460,7 @@
daemon_process()->CloseDesktopSession(id());
}
-void DesktopSessionWin::OnChannelConnected(int32 peer_pid) {
+void DesktopSessionWin::OnChannelConnected(int32_t peer_pid) {
DCHECK(caller_task_runner_->BelongsToCurrentThread());
ReportElapsedTime("channel connected");
@@ -502,7 +503,7 @@
TerminateSession();
}
-void DesktopSessionWin::OnSessionAttached(uint32 session_id) {
+void DesktopSessionWin::OnSessionAttached(uint32_t session_id) {
DCHECK(caller_task_runner_->BelongsToCurrentThread());
DCHECK(!launcher_);
DCHECK(monitoring_notifications_);