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

Unified Diff: content/common/child_process.cc

Issue 14081010: Cleanup: Remove unnecessary ".get()" from scoped_ptrs<>. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix some gtk issues Created 7 years, 8 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
« no previous file with comments | « content/browser/webui/url_data_manager_backend.cc ('k') | content/common/child_process_host_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/child_process.cc
diff --git a/content/common/child_process.cc b/content/common/child_process.cc
index 75c80ecd24a64f646e965aa65352b764196b2f25..c66e4a44a7e00904903225cf5268473dafb88032 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();
}
« no previous file with comments | « content/browser/webui/url_data_manager_backend.cc ('k') | content/common/child_process_host_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698