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

Unified Diff: remoting/host/worker_process_ipc_delegate.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_observer.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/worker_process_ipc_delegate.h
diff --git a/remoting/host/worker_process_ipc_delegate.h b/remoting/host/worker_process_ipc_delegate.h
index bdacd4758f9c8a0ccd20a2f8938d005c4abb839d..9ba4cb0fcf338e1dc1217dc123bbedbedd179d8d 100644
--- a/remoting/host/worker_process_ipc_delegate.h
+++ b/remoting/host/worker_process_ipc_delegate.h
@@ -5,7 +5,8 @@
#ifndef REMOTING_HOST_WORKER_PROCESS_IPC_DELEGATE_H_
#define REMOTING_HOST_WORKER_PROCESS_IPC_DELEGATE_H_
-#include "base/basictypes.h"
+#include <stdint.h>
+
#include "base/compiler_specific.h"
namespace IPC {
@@ -21,7 +22,7 @@ class WorkerProcessIpcDelegate {
virtual ~WorkerProcessIpcDelegate() {}
// Notifies that a client has been connected to the channel.
- virtual void OnChannelConnected(int32 peer_pid) = 0;
+ virtual void OnChannelConnected(int32_t peer_pid) = 0;
// Processes messages sent by the client.
virtual bool OnMessageReceived(const IPC::Message& message) = 0;
« no previous file with comments | « remoting/host/win/wts_terminal_observer.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698