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

Unified Diff: content/browser/webui/web_ui_impl.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
Index: content/browser/webui/web_ui_impl.h
diff --git a/content/browser/webui/web_ui_impl.h b/content/browser/webui/web_ui_impl.h
index e8f9ea10c0d88842792973e8a37b046088036dd9..0d05579fc83510fa4062345651c41a0727163ae7 100644
--- a/content/browser/webui/web_ui_impl.h
+++ b/content/browser/webui/web_ui_impl.h
@@ -11,14 +11,14 @@
#include "base/compiler_specific.h"
#include "base/memory/weak_ptr.h"
#include "content/public/browser/web_ui.h"
-#include "ipc/ipc_channel.h"
+#include "ipc/ipc_listener.h"
namespace content {
class RenderViewHost;
}
class CONTENT_EXPORT WebUIImpl : public content::WebUI,
- public IPC::Channel::Listener,
+ public IPC::Listener,
public base::SupportsWeakPtr<WebUIImpl> {
public:
explicit WebUIImpl(content::WebContents* contents);
@@ -76,7 +76,7 @@ class CONTENT_EXPORT WebUIImpl : public content::WebUI,
const std::string& function_name,
const std::vector<const base::Value*>& args) OVERRIDE;
- // IPC::Channel::Listener implementation:
+ // IPC::Listener implementation:
virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
private:
« no previous file with comments | « content/browser/resolve_proxy_msg_helper_unittest.cc ('k') | content/browser/worker_host/worker_process_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698