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

Unified Diff: chrome/browser/io_thread.h

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 | « no previous file | chrome/browser/io_thread.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/io_thread.h
===================================================================
--- chrome/browser/io_thread.h (revision 45472)
+++ chrome/browser/io_thread.h (working copy)
@@ -61,6 +61,7 @@
protected:
virtual void Init();
+ virtual void CleanUp();
virtual void CleanUpAfterMessageLoopDestruction();
private:
@@ -78,13 +79,19 @@
// These member variables are basically global, but their lifetimes are tied
// to the IOThread. IOThread owns them all, despite not using scoped_ptr.
// This is because the destructor of IOThread runs on the wrong thread. All
- // member variables should be deleted in CleanUp().
+ // member variables should be deleted in CleanUp(), except ChromeNetLog
+ // which is deleted later in CleanUpAfterMessageLoopDestruction().
// These member variables are initialized in Init() and do not change for the
// lifetime of the IO thread.
Globals* globals_;
+ // This variable is only meaningful during shutdown. It is used to defer
+ // deletion of the NetLog to CleanUpAfterMessageLoopDestruction() even
+ // though |globals_| is reset by CleanUp().
+ scoped_ptr<ChromeNetLog> deferred_net_log_to_delete_;
+
// These member variables are initialized by a task posted to the IO thread,
// which gets posted by calling certain member functions of IOThread.
« no previous file with comments | « no previous file | chrome/browser/io_thread.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698