Index: content/common/child_thread.h |
diff --git a/content/common/child_thread.h b/content/common/child_thread.h |
index a2b98640cf1115df5f03fabe7135ed59007be123..36b2417f72193fc0fee8427fc214328b744f9f69 100644 |
--- a/content/common/child_thread.h |
+++ b/content/common/child_thread.h |
@@ -14,10 +14,13 @@ |
#include "webkit/glue/resource_loader_bridge.h" |
class FileSystemDispatcher; |
+class IndexedDBDispatcher; |
+class IndexedDBMessageFilter; |
class MessageLoop; |
class QuotaDispatcher; |
class ResourceDispatcher; |
class SocketStreamDispatcher; |
+class WebCoreWorkerTracker; |
namespace IPC { |
class SyncChannel; |
@@ -79,6 +82,9 @@ class CONTENT_EXPORT ChildThread : public IPC::Channel::Listener, |
// Returns the one child thread. |
static ChildThread* current(); |
+ IndexedDBDispatcher* indexed_db_dispatcher() const; |
+ WebCoreWorkerTracker* webcore_worker_tracker() const; |
+ |
protected: |
friend class ChildProcess; |
@@ -136,6 +142,8 @@ class CONTENT_EXPORT ChildThread : public IPC::Channel::Listener, |
scoped_ptr<QuotaDispatcher> quota_dispatcher_; |
+ scoped_refptr<IndexedDBMessageFilter> idb_message_filter_; |
+ |
DISALLOW_COPY_AND_ASSIGN(ChildThread); |
}; |