| Index: content/browser/browser_process_sub_thread.h
|
| ===================================================================
|
| --- content/browser/browser_process_sub_thread.h (revision 159813)
|
| +++ content/browser/browser_process_sub_thread.h (working copy)
|
| @@ -9,6 +9,14 @@
|
| #include "content/browser/browser_thread_impl.h"
|
| #include "content/common/content_export.h"
|
|
|
| +#if defined(OS_WIN)
|
| +namespace base {
|
| +namespace win {
|
| +class ScopedCOMInitializer;
|
| +}
|
| +}
|
| +#endif
|
| +
|
| namespace content {
|
| class NotificationService;
|
| }
|
| @@ -38,6 +46,10 @@
|
| // before we call the embedder's CleanUp function.
|
| void IOThreadPreCleanUp();
|
|
|
| +#if defined (OS_WIN)
|
| + scoped_ptr<base::win::ScopedCOMInitializer> com_initializer_;
|
| +#endif
|
| +
|
| // Each specialized thread has its own notification service.
|
| scoped_ptr<NotificationService> notification_service_;
|
|
|
|
|