| Index: remoting/host/daemon_process_win.cc
|
| diff --git a/remoting/host/daemon_process_win.cc b/remoting/host/daemon_process_win.cc
|
| index 08ffff66818732bf9df84c1f8e06357dbfd9ade0..e290857cbcba5fad16663b48fa9b4dae44c1dddb 100644
|
| --- a/remoting/host/daemon_process_win.cc
|
| +++ b/remoting/host/daemon_process_win.cc
|
| @@ -4,11 +4,14 @@
|
|
|
| #include "remoting/host/daemon_process.h"
|
|
|
| +#include <stdint.h>
|
| +
|
| #include "base/base_switches.h"
|
| #include "base/bind.h"
|
| #include "base/bind_helpers.h"
|
| #include "base/location.h"
|
| #include "base/logging.h"
|
| +#include "base/macros.h"
|
| #include "base/memory/ref_counted.h"
|
| #include "base/memory/scoped_ptr.h"
|
| #include "base/process/process.h"
|
| @@ -71,7 +74,7 @@ class DaemonProcessWin : public DaemonProcess {
|
| ~DaemonProcessWin() override;
|
|
|
| // WorkerProcessIpcDelegate implementation.
|
| - void OnChannelConnected(int32 peer_pid) override;
|
| + void OnChannelConnected(int32_t peer_pid) override;
|
| void OnPermanentError(int exit_code) override;
|
|
|
| // DaemonProcess overrides.
|
| @@ -123,7 +126,7 @@ DaemonProcessWin::DaemonProcessWin(
|
| DaemonProcessWin::~DaemonProcessWin() {
|
| }
|
|
|
| -void DaemonProcessWin::OnChannelConnected(int32 peer_pid) {
|
| +void DaemonProcessWin::OnChannelConnected(int32_t peer_pid) {
|
| // Obtain the handle of the network process.
|
| network_process_.Set(OpenProcess(PROCESS_DUP_HANDLE, false, peer_pid));
|
| if (!network_process_.IsValid()) {
|
|
|