| Index: trunk/src/content/child/child_thread.h
|
| ===================================================================
|
| --- trunk/src/content/child/child_thread.h (revision 214172)
|
| +++ trunk/src/content/child/child_thread.h (working copy)
|
| @@ -37,6 +37,7 @@
|
| class ChildResourceMessageFilter;
|
| class FileSystemDispatcher;
|
| class QuotaDispatcher;
|
| +class QuotaMessageFilter;
|
| class ResourceDispatcher;
|
| class SocketStreamDispatcher;
|
| class ThreadSafeSender;
|
| @@ -112,6 +113,10 @@
|
| return histogram_message_filter_.get();
|
| }
|
|
|
| + QuotaMessageFilter* quota_message_filter() const {
|
| + return quota_message_filter_.get();
|
| + }
|
| +
|
| base::MessageLoop* message_loop() const { return message_loop_; }
|
|
|
| // Returns the one child thread. Can only be called on the main thread.
|
| @@ -188,6 +193,8 @@
|
|
|
| scoped_refptr<ChildResourceMessageFilter> resource_message_filter_;
|
|
|
| + scoped_refptr<QuotaMessageFilter> quota_message_filter_;
|
| +
|
| base::WeakPtrFactory<ChildThread> channel_connected_factory_;
|
|
|
| // Observes the trace event system. When tracing is enabled, optionally
|
|
|