diff options
Diffstat (limited to 'content/common/child_process.cc')
-rw-r--r-- | content/common/child_process.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/content/common/child_process.cc b/content/common/child_process.cc index 75c80ec..c66e4a4 100644 --- a/content/common/child_process.cc +++ b/content/common/child_process.cc @@ -98,7 +98,7 @@ void ChildProcess::ReleaseProcess() { if (--ref_count_) return; - if (main_thread_.get()) // null in unittests. + if (main_thread_) // null in unittests. main_thread_->OnProcessFinalRelease(); } |