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

Unified Diff: content/common/quota_dispatcher.h

Issue 10662005: Use IPC::Sender and IPC::Listener in content. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 6 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/common/npobject_stub.cc ('k') | content/common/resource_dispatcher.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/quota_dispatcher.h
diff --git a/content/common/quota_dispatcher.h b/content/common/quota_dispatcher.h
index 1d1c262a9e58e34388d298ecdafabd6b8fea95f4..f6366235223e60031cac9e80f3d78d184c1efde1 100644
--- a/content/common/quota_dispatcher.h
+++ b/content/common/quota_dispatcher.h
@@ -10,7 +10,7 @@
#include "base/basictypes.h"
#include "base/id_map.h"
-#include "ipc/ipc_channel.h"
+#include "ipc/ipc_listener.h"
#include "webkit/quota/quota_types.h"
class GURL;
@@ -26,7 +26,7 @@ class WebStorageQuotaCallbacks;
// Dispatches and sends quota related messages sent to/from a child
// process from/to the main browser process. There is one instance
// per child process. Messages are dispatched on the main child thread.
-class QuotaDispatcher : public IPC::Channel::Listener {
+class QuotaDispatcher : public IPC::Listener {
public:
class Callback {
public:
@@ -39,7 +39,7 @@ class QuotaDispatcher : public IPC::Channel::Listener {
QuotaDispatcher();
virtual ~QuotaDispatcher();
- // IPC::Channel::Listener implementation.
+ // IPC::Listener implementation.
virtual bool OnMessageReceived(const IPC::Message& msg) OVERRIDE;
void QueryStorageUsageAndQuota(const GURL& gurl,
« no previous file with comments | « content/common/npobject_stub.cc ('k') | content/common/resource_dispatcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698