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

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

Issue 864163003: Rename base::Process::pid() to Pid() (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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 f8efafce0ca5078e1c573fca46a3fd93dbd461f0..7c1e9c0e4e78a589382e3fc570b2d47770697559 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 = nacl_process_.pid();
+ int pid = nacl_process_.Pid();
if (nacl_process_.IsValid()) {
DCHECK(pid);
if (!DebugActiveProcess(pid)) {

Powered by Google App Engine
This is Rietveld 408576698