| Index: remoting/host/desktop_session_proxy.cc
|
| diff --git a/remoting/host/desktop_session_proxy.cc b/remoting/host/desktop_session_proxy.cc
|
| index 6166d20aa5af2a0103411ab7ba2d89a85fa8a036..19b5eb904c1c9c95eea2211a8e7e9acb8cfd3a25 100644
|
| --- a/remoting/host/desktop_session_proxy.cc
|
| +++ b/remoting/host/desktop_session_proxy.cc
|
| @@ -4,11 +4,15 @@
|
|
|
| #include "remoting/host/desktop_session_proxy.h"
|
|
|
| +#include <stddef.h>
|
| +
|
| #include "base/compiler_specific.h"
|
| #include "base/logging.h"
|
| -#include "base/process/process_handle.h"
|
| +#include "base/macros.h"
|
| #include "base/memory/shared_memory.h"
|
| +#include "base/process/process_handle.h"
|
| #include "base/single_thread_task_runner.h"
|
| +#include "build/build_config.h"
|
| #include "ipc/ipc_channel_proxy.h"
|
| #include "ipc/ipc_message_macros.h"
|
| #include "remoting/base/capabilities.h"
|
| @@ -201,7 +205,7 @@ bool DesktopSessionProxy::OnMessageReceived(const IPC::Message& message) {
|
| return handled;
|
| }
|
|
|
| -void DesktopSessionProxy::OnChannelConnected(int32 peer_pid) {
|
| +void DesktopSessionProxy::OnChannelConnected(int32_t peer_pid) {
|
| DCHECK(caller_task_runner_->BelongsToCurrentThread());
|
|
|
| VLOG(1) << "IPC: network <- desktop (" << peer_pid << ")";
|
| @@ -471,7 +475,7 @@ void DesktopSessionProxy::OnAudioPacket(const std::string& serialized_packet) {
|
| void DesktopSessionProxy::OnCreateSharedBuffer(
|
| int id,
|
| IPC::PlatformFileForTransit handle,
|
| - uint32 size) {
|
| + uint32_t size) {
|
| DCHECK(caller_task_runner_->BelongsToCurrentThread());
|
|
|
| #if defined(OS_WIN)
|
|
|