diff options
author | eroman@chromium.org <eroman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-04-15 00:15:39 +0000 |
---|---|---|
committer | eroman@chromium.org <eroman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-04-15 00:15:39 +0000 |
commit | 9aa33e851f4e0e01d302a3440111fd56e34aa664 (patch) | |
tree | 81120bea45f2f20b0f6ac78473cab657af0c6524 /chrome/browser/io_thread.h | |
parent | 6c36d7f308d3596b70f8b1f90eef002d52dc380d (diff) | |
download | chromium_src-9aa33e851f4e0e01d302a3440111fd56e34aa664.zip chromium_src-9aa33e851f4e0e01d302a3440111fd56e34aa664.tar.gz chromium_src-9aa33e851f4e0e01d302a3440111fd56e34aa664.tar.bz2 |
Don't delete the IOThread globals until all of the MessageLoop::DestructionObservers have run (in case they try to access one of these pointers)
BUG=39723
Review URL: http://codereview.chromium.org/1638011
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@44586 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/io_thread.h')
-rw-r--r-- | chrome/browser/io_thread.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/io_thread.h b/chrome/browser/io_thread.h index 404f69e..af249f9 100644 --- a/chrome/browser/io_thread.h +++ b/chrome/browser/io_thread.h @@ -59,7 +59,7 @@ class IOThread : public BrowserProcessSubThread { protected: virtual void Init(); - virtual void CleanUp(); + virtual void CleanUpAfterMessageLoopDestruction(); private: net::HttpAuthHandlerFactory* CreateDefaultAuthHandlerFactory(); |