Index: content/browser/browser_process_sub_thread.h |
=================================================================== |
--- content/browser/browser_process_sub_thread.h (revision 117868) |
+++ content/browser/browser_process_sub_thread.h (working copy) |
@@ -35,6 +35,11 @@ |
virtual void CleanUp() OVERRIDE; |
private: |
+ // These methods encapsulate cleanup that needs to happen on the IO thread |
+ // before/after we call the embedder's CleanUp function. |
+ void IOThreadPreCleanUp(); |
+ void IOThreadPostCleanUp(); |
+ |
// Each specialized thread has its own notification service. |
// Note: We don't use scoped_ptr because the destructor runs on the wrong |
// thread. |