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

Unified Diff: components/nacl/browser/nacl_broker_service_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_service_win.h ('k') | components/nacl/browser/nacl_browser.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/nacl/browser/nacl_broker_service_win.cc
diff --git a/components/nacl/browser/nacl_broker_service_win.cc b/components/nacl/browser/nacl_broker_service_win.cc
index 3052e94a8513311b42d1d7657d4104b4b0c1eab3..c2e442ff293347f9921981f4ef9e3d59cf1f5be5 100644
--- a/components/nacl/browser/nacl_broker_service_win.cc
+++ b/components/nacl/browser/nacl_broker_service_win.cc
@@ -73,8 +73,10 @@ void NaClBrokerService::OnLoaderDied() {
}
bool NaClBrokerService::LaunchDebugExceptionHandler(
- base::WeakPtr<NaClProcessHost> nacl_process_host, int32 pid,
- base::ProcessHandle process_handle, const std::string& startup_info) {
+ base::WeakPtr<NaClProcessHost> nacl_process_host,
+ int32_t pid,
+ base::ProcessHandle process_handle,
+ const std::string& startup_info) {
pending_debuggers_[pid] = nacl_process_host;
NaClBrokerHost* broker_host = GetBrokerHost();
if (!broker_host)
@@ -83,7 +85,7 @@ bool NaClBrokerService::LaunchDebugExceptionHandler(
startup_info);
}
-void NaClBrokerService::OnDebugExceptionHandlerLaunched(int32 pid,
+void NaClBrokerService::OnDebugExceptionHandlerLaunched(int32_t pid,
bool success) {
PendingDebugExceptionHandlersMap::iterator it = pending_debuggers_.find(pid);
if (pending_debuggers_.end() == it)
« no previous file with comments | « components/nacl/browser/nacl_broker_service_win.h ('k') | components/nacl/browser/nacl_browser.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698