summaryrefslogtreecommitdiffstats
path: root/components/nacl/browser/nacl_process_host.cc
diff options
context:
space:
mode:
authorrvargas <rvargas@chromium.org>2014-09-29 17:04:46 -0700
committerCommit bot <commit-bot@chromium.org>2014-09-30 00:05:52 +0000
commitc94f1fb74a18bf626546461426cb2630836467d0 (patch)
treec15045a1b13067d4d6d1443959fe02ef8e4c34ec /components/nacl/browser/nacl_process_host.cc
parent94dbb777c583375f778b9d1ff9fb766d6102bf6b (diff)
downloadchromium_src-c94f1fb74a18bf626546461426cb2630836467d0.zip
chromium_src-c94f1fb74a18bf626546461426cb2630836467d0.tar.gz
chromium_src-c94f1fb74a18bf626546461426cb2630836467d0.tar.bz2
Remove implicit HANDLE conversions from components.
BUG=416722 R=jochen@chromium.org TBR=thestig@chromium.org Review URL: https://codereview.chromium.org/596153003 Cr-Commit-Position: refs/heads/master@{#297312}
Diffstat (limited to 'components/nacl/browser/nacl_process_host.cc')
-rw-r--r--components/nacl/browser/nacl_process_host.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/components/nacl/browser/nacl_process_host.cc b/components/nacl/browser/nacl_process_host.cc
index b6345f0..7cf381e 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,