Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(344)

Unified Diff: remoting/host/win/host_service.h

Issue 1547473005: Switch to standard integer types in remoting/host/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « remoting/host/win/com_security.cc ('k') | remoting/host/win/host_service.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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|.
« no previous file with comments | « remoting/host/win/com_security.cc ('k') | remoting/host/win/host_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698