Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(37)

Unified Diff: content/common/child_thread.h

Issue 6811022: Add IPC plumbing code for Quota API (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: comments reflected Created 9 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/browser/renderer_host/quota_dispatcher_host.cc ('k') | content/common/child_thread.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/child_thread.h
diff --git a/content/common/child_thread.h b/content/common/child_thread.h
index 4b27ab7968b387883ec1f69ae8e9d9e02b6b4ab5..f2ac864ade86381c86d90f91d72c22abd6852ad3 100644
--- a/content/common/child_thread.h
+++ b/content/common/child_thread.h
@@ -14,6 +14,7 @@
class FileSystemDispatcher;
class MessageLoop;
class NotificationService;
+class QuotaDispatcher;
class ResourceDispatcher;
class SocketStreamDispatcher;
@@ -56,6 +57,10 @@ class ChildThread : public IPC::Channel::Listener,
return file_system_dispatcher_.get();
}
+ QuotaDispatcher* quota_dispatcher() const {
+ return quota_dispatcher_.get();
+ }
+
// Safe to call on any thread, as long as it's guaranteed that the thread's
// lifetime is less than the main thread.
IPC::SyncMessageFilter* sync_message_filter();
@@ -122,6 +127,8 @@ class ChildThread : public IPC::Channel::Listener,
scoped_ptr<FileSystemDispatcher> file_system_dispatcher_;
+ scoped_ptr<QuotaDispatcher> quota_dispatcher_;
+
DISALLOW_COPY_AND_ASSIGN(ChildThread);
};
« no previous file with comments | « content/browser/renderer_host/quota_dispatcher_host.cc ('k') | content/common/child_thread.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698