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

Unified Diff: components/nacl/common/nacl_debug_exception_handler_win.cc

Issue 596153003: Remove implicit HANDLE conversions from components. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove spurious file Created 6 years, 3 months 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
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());
}
« no previous file with comments | « components/nacl/browser/nacl_process_host.cc ('k') | components/storage_monitor/volume_mount_watcher_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698