| Index: remoting/host/desktop_session_win.h
|
| diff --git a/remoting/host/desktop_session_win.h b/remoting/host/desktop_session_win.h
|
| index b6fcd84a97c3d786187b8db37ee2c6c6f40cb2b6..08752439d3b492c7b67b475345fdaede9c0a4dea 100644
|
| --- a/remoting/host/desktop_session_win.h
|
| +++ b/remoting/host/desktop_session_win.h
|
| @@ -5,6 +5,9 @@
|
| #ifndef REMOTING_HOST_DESKTOP_SESSION_WIN_H_
|
| #define REMOTING_HOST_DESKTOP_SESSION_WIN_H_
|
|
|
| +#include <stdint.h>
|
| +
|
| +#include "base/macros.h"
|
| #include "base/memory/ref_counted.h"
|
| #include "base/memory/scoped_ptr.h"
|
| #include "base/time/time.h"
|
| @@ -85,12 +88,12 @@ class DesktopSessionWin
|
| virtual void InjectSas() = 0;
|
|
|
| // WorkerProcessIpcDelegate implementation.
|
| - void OnChannelConnected(int32 peer_pid) override;
|
| + void OnChannelConnected(int32_t peer_pid) override;
|
| bool OnMessageReceived(const IPC::Message& message) override;
|
| void OnPermanentError(int exit_code) override;
|
|
|
| // WtsTerminalObserver implementation.
|
| - void OnSessionAttached(uint32 session_id) override;
|
| + void OnSessionAttached(uint32_t session_id) override;
|
| void OnSessionDetached() override;
|
|
|
| private:
|
|
|