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

Unified Diff: remoting/host/win/wts_terminal_observer.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/wts_terminal_monitor.cc ('k') | remoting/host/worker_process_ipc_delegate.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/win/wts_terminal_observer.h
diff --git a/remoting/host/win/wts_terminal_observer.h b/remoting/host/win/wts_terminal_observer.h
index b7ec9e391dbddae7c2c021e202d0d4cc283f4250..9da16203e9a7f324d9dc77c1f5647e4712ff14a1 100644
--- a/remoting/host/win/wts_terminal_observer.h
+++ b/remoting/host/win/wts_terminal_observer.h
@@ -6,8 +6,9 @@
#define REMOTING_HOST_WIN_WTS_TERMINAL_OBSERVER_H_
#include <windows.h>
+#include <stdint.h>
-#include "base/basictypes.h"
+#include "base/macros.h"
namespace remoting {
@@ -17,7 +18,7 @@ class WtsTerminalObserver {
virtual ~WtsTerminalObserver() {}
// Called when |session_id| attaches to the console.
- virtual void OnSessionAttached(uint32 session_id) = 0;
+ virtual void OnSessionAttached(uint32_t session_id) = 0;
// Called when a session detaches from the console.
virtual void OnSessionDetached() = 0;
« no previous file with comments | « remoting/host/win/wts_terminal_monitor.cc ('k') | remoting/host/worker_process_ipc_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698