| Index: remoting/host/win/host_service.h
|
| diff --git a/remoting/host/win/host_service.h b/remoting/host/win/host_service.h
|
| index e7fbf2614a2646303deb933541e15a09a45ac067..58a8e564eac2c6602f45284d4bf55630be4bff0f 100644
|
| --- a/remoting/host/win/host_service.h
|
| +++ b/remoting/host/win/host_service.h
|
| @@ -6,9 +6,11 @@
|
| #define REMOTING_HOST_WIN_HOST_SERVICE_H_
|
|
|
| #include <windows.h>
|
| +#include <stdint.h>
|
|
|
| #include <list>
|
|
|
| +#include "base/macros.h"
|
| #include "base/memory/ref_counted.h"
|
| #include "base/memory/singleton.h"
|
| #include "base/memory/weak_ptr.h"
|
| @@ -47,7 +49,7 @@ class HostService : public WtsTerminalMonitor {
|
| ~HostService() override;
|
|
|
| // Notifies the service of changes in session state.
|
| - void OnSessionChange(uint32 event, uint32 session_id);
|
| + void OnSessionChange(uint32_t event, uint32_t session_id);
|
|
|
| // Creates the process launcher.
|
| void CreateLauncher(scoped_refptr<AutoThreadTaskRunner> task_runner);
|
| @@ -91,7 +93,7 @@ class HostService : public WtsTerminalMonitor {
|
|
|
| // Specifies ID of the attached session or |kInvalidSession| if no session
|
| // is attached to the WTS terminal.
|
| - uint32 session_id;
|
| + uint32_t session_id;
|
|
|
| // Points to the observer receiving notifications about the WTS terminal
|
| // identified by |terminal_id|.
|
|
|