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

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

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/host_service.h ('k') | remoting/host/win/launch_process_with_token.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/win/host_service.cc
diff --git a/remoting/host/win/host_service.cc b/remoting/host/win/host_service.cc
index e2477478f74dd8f183162604e0c57f9232f53e16..950219de846a4f443549b05ac076cfe37f6d00ce 100644
--- a/remoting/host/win/host_service.cc
+++ b/remoting/host/win/host_service.cc
@@ -7,8 +7,8 @@
#include "remoting/host/win/host_service.h"
-#include <sddl.h>
#include <windows.h>
+#include <sddl.h>
#include <wtsapi32.h>
#include "base/base_paths.h"
@@ -145,7 +145,7 @@ HostService::HostService() :
HostService::~HostService() {
}
-void HostService::OnSessionChange(uint32 event, uint32 session_id) {
+void HostService::OnSessionChange(uint32_t event, uint32_t session_id) {
DCHECK(main_task_runner_->BelongsToCurrentThread());
DCHECK_NE(session_id, kInvalidSessionId);
« no previous file with comments | « remoting/host/win/host_service.h ('k') | remoting/host/win/launch_process_with_token.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698