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

Unified Diff: content/renderer/web_ui_bindings.h

Issue 10532162: Rename IPC Sender and Listener in ppapi, content/public, and content/renderer (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
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/renderer/web_ui_bindings.h
diff --git a/content/renderer/web_ui_bindings.h b/content/renderer/web_ui_bindings.h
index 732eeed17198f56d4492bc7d86379bf7270a2297..b072cee702024562850377f5c6932498d408e69d 100644
--- a/content/renderer/web_ui_bindings.h
+++ b/content/renderer/web_ui_bindings.h
@@ -7,7 +7,7 @@
#pragma once
#include "content/common/content_export.h"
-#include "ipc/ipc_message.h"
+#include "ipc/ipc_sender.h"
#include "webkit/glue/cpp_bound_class.h"
// A DOMBoundBrowserObject is a backing for some object bound to the window
@@ -39,8 +39,7 @@ class DOMBoundBrowserObject : public webkit_glue::CppBoundClass {
// delegate.
class WebUIBindings : public DOMBoundBrowserObject {
public:
- WebUIBindings(IPC::Message::Sender* sender,
- int routing_id);
+ WebUIBindings(IPC::Sender* sender, int routing_id);
virtual ~WebUIBindings();
private:
@@ -48,7 +47,7 @@ class WebUIBindings : public DOMBoundBrowserObject {
void Send(const webkit_glue::CppArgumentList& args,
webkit_glue::CppVariant* result);
- IPC::Message::Sender* sender_;
+ IPC::Sender* sender_;
int routing_id_;
DISALLOW_COPY_AND_ASSIGN(WebUIBindings);

Powered by Google App Engine
This is Rietveld 408576698