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

Unified Diff: chrome/browser/io_thread.cc

Issue 1798001: Make sure the "cancel leaked host resolver requests shutdown hack" gets run b... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: fix comments Created 10 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 | « chrome/browser/io_thread.h ('k') | chrome/test/data/reliability/known_crashes.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/io_thread.cc
===================================================================
--- chrome/browser/io_thread.cc (revision 45472)
+++ chrome/browser/io_thread.cc (working copy)
@@ -144,7 +144,7 @@
globals_->http_auth_handler_factory.reset(CreateDefaultAuthHandlerFactory());
}
-void IOThread::CleanUpAfterMessageLoopDestruction() {
+void IOThread::CleanUp() {
// Not initialized in Init(). May not be initialized.
if (dns_master_) {
DCHECK(prefetch_observer_);
@@ -170,6 +170,10 @@
globals_->host_resolver.get()->GetAsHostResolverImpl()->Shutdown();
}
+ // We will delete the NetLog as part of CleanUpAfterMessageLoopDestruction()
+ // in case any of the message loop destruction observers try to access it.
+ deferred_net_log_to_delete_.reset(globals_->net_log.release());
+
delete globals_;
globals_ = NULL;
@@ -186,6 +190,15 @@
base::LeakTracker<URLFetcher>::CheckForLeaks();
base::LeakTracker<URLRequest>::CheckForLeaks();
+ BrowserProcessSubThread::CleanUp();
+}
+
+void IOThread::CleanUpAfterMessageLoopDestruction() {
+ // TODO(eroman): get rid of this special case for 39723. If we could instead
+ // have a method that runs after the message loop destruction obsevers have
+ // run, but before the message loop itself is destroyed, we could safely
+ // combine the two cleanups.
+ deferred_net_log_to_delete_.reset();
BrowserProcessSubThread::CleanUpAfterMessageLoopDestruction();
}
« no previous file with comments | « chrome/browser/io_thread.h ('k') | chrome/test/data/reliability/known_crashes.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698