| 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);
|
|
|