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

Unified Diff: components/nacl/browser/nacl_broker_host_win.h

Issue 1548113002: Switch to standard integer types in components/, part 2 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: gn 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 | « components/nacl/broker/nacl_broker_listener.cc ('k') | components/nacl/browser/nacl_broker_host_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/nacl/browser/nacl_broker_host_win.h
diff --git a/components/nacl/browser/nacl_broker_host_win.h b/components/nacl/browser/nacl_broker_host_win.h
index 85a9eb1d7809782bee37a96fa127b28018c1d5af..f88594ffc690e15dff1567d2327c3bade7848a69 100644
--- a/components/nacl/browser/nacl_broker_host_win.h
+++ b/components/nacl/browser/nacl_broker_host_win.h
@@ -5,9 +5,11 @@
#ifndef COMPONENTS_NACL_BROWSER_NACL_BROKER_HOST_WIN_H_
#define COMPONENTS_NACL_BROWSER_NACL_BROKER_HOST_WIN_H_
+#include <stdint.h>
+
#include <string>
-#include "base/basictypes.h"
+#include "base/macros.h"
#include "base/memory/scoped_ptr.h"
#include "base/process/process.h"
#include "content/public/browser/browser_child_process_host_delegate.h"
@@ -31,7 +33,7 @@ class NaClBrokerHost : public content::BrowserChildProcessHostDelegate {
// a Native Client loader process.
bool LaunchLoader(const std::string& loader_channel_id);
- bool LaunchDebugExceptionHandler(int32 pid,
+ bool LaunchDebugExceptionHandler(int32_t pid,
base::ProcessHandle process_handle,
const std::string& startup_info);
@@ -48,7 +50,7 @@ class NaClBrokerHost : public content::BrowserChildProcessHostDelegate {
void OnLoaderLaunched(const std::string& loader_channel_id,
base::ProcessHandle handle);
// Handler for NaClProcessMsg_DebugExceptionHandlerLaunched message
- void OnDebugExceptionHandlerLaunched(int32 pid, bool success);
+ void OnDebugExceptionHandlerLaunched(int32_t pid, bool success);
// BrowserChildProcessHostDelegate implementation:
bool OnMessageReceived(const IPC::Message& msg) override;
« no previous file with comments | « components/nacl/broker/nacl_broker_listener.cc ('k') | components/nacl/browser/nacl_broker_host_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698