| 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)
|
|
|