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

Unified Diff: components/nacl/browser/nacl_process_host.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/browser/nacl_process_host.cc
diff --git a/components/nacl/browser/nacl_process_host.cc b/components/nacl/browser/nacl_process_host.cc
index b6345f0bd2be14867b3ea37555fedf6a2b4e7729..7cf381e549f484097f99511808af9e7053ff18d4 100644
--- a/components/nacl/browser/nacl_process_host.cc
+++ b/components/nacl/browser/nacl_process_host.cc
@@ -1189,7 +1189,8 @@ bool NaClProcessHost::AttachDebugExceptionHandler(const std::string& info,
// the 32-bit browser process to run the debug exception handler.
if (RunningOnWOW64()) {
return NaClBrokerService::GetInstance()->LaunchDebugExceptionHandler(
- weak_factory_.GetWeakPtr(), nacl_pid, process_handle, info);
+ weak_factory_.GetWeakPtr(), nacl_pid, process_handle.Get(),
+ info);
} else {
NaClStartDebugExceptionHandlerThread(
process_handle.Take(), info,
« no previous file with comments | « components/metrics/machine_id_provider_win.cc ('k') | components/nacl/common/nacl_debug_exception_handler_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698