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

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

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/browser/nacl_broker_host_win.h ('k') | components/nacl/browser/nacl_broker_service_win.h » ('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.cc
diff --git a/components/nacl/browser/nacl_broker_host_win.cc b/components/nacl/browser/nacl_broker_host_win.cc
index 7c14f7c56996d031afa7dcadce684e4b4c7cbce2..3aa98862384a5509791596523bed9441fc8e5f68 100644
--- a/components/nacl/browser/nacl_broker_host_win.cc
+++ b/components/nacl/browser/nacl_broker_host_win.cc
@@ -6,6 +6,7 @@
#include "base/base_switches.h"
#include "base/command_line.h"
+#include "base/macros.h"
#include "components/nacl/browser/nacl_broker_service_win.h"
#include "components/nacl/browser/nacl_browser.h"
#include "components/nacl/common/nacl_cmd_line.h"
@@ -94,7 +95,8 @@ void NaClBrokerHost::OnLoaderLaunched(const std::string& loader_channel_id,
}
bool NaClBrokerHost::LaunchDebugExceptionHandler(
- int32 pid, base::ProcessHandle process_handle,
+ int32_t pid,
+ base::ProcessHandle process_handle,
const std::string& startup_info) {
base::ProcessHandle broker_process = process_->GetData().handle;
base::ProcessHandle handle_in_broker_process;
@@ -106,7 +108,8 @@ bool NaClBrokerHost::LaunchDebugExceptionHandler(
pid, handle_in_broker_process, startup_info));
}
-void NaClBrokerHost::OnDebugExceptionHandlerLaunched(int32 pid, bool success) {
+void NaClBrokerHost::OnDebugExceptionHandlerLaunched(int32_t pid,
+ bool success) {
NaClBrokerService::GetInstance()->OnDebugExceptionHandlerLaunched(pid,
success);
}
« no previous file with comments | « components/nacl/browser/nacl_broker_host_win.h ('k') | components/nacl/browser/nacl_broker_service_win.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698