Index: components/nacl/common/nacl_debug_exception_handler_win.cc |
diff --git a/components/nacl/common/nacl_debug_exception_handler_win.cc b/components/nacl/common/nacl_debug_exception_handler_win.cc |
index f661391c4f43de7ea57d4851259e3b65e8d9dada..bc3427e938838c55ea70428002fd522139c9dfc8 100644 |
--- a/components/nacl/common/nacl_debug_exception_handler_win.cc |
+++ b/components/nacl/common/nacl_debug_exception_handler_win.cc |
@@ -30,7 +30,7 @@ class DebugExceptionHandler : public base::PlatformThread::Delegate { |
// NaClDebugExceptionHandlerRun() receives debug events for the |
// process. |
bool attached = false; |
- int pid = GetProcessId(nacl_process_); |
+ int pid = GetProcessId(nacl_process_.Get()); |
if (pid == 0) { |
LOG(ERROR) << "Invalid process handle"; |
} else { |
@@ -44,7 +44,7 @@ class DebugExceptionHandler : public base::PlatformThread::Delegate { |
if (attached) { |
NaClDebugExceptionHandlerRun( |
- nacl_process_, |
+ nacl_process_.Get(), |
reinterpret_cast<const void*>(startup_info_.data()), |
startup_info_.size()); |
} |