| Index: content/renderer/input/input_event_filter.cc
|
| ===================================================================
|
| --- content/renderer/input/input_event_filter.cc (revision 278168)
|
| +++ content/renderer/input/input_event_filter.cc (working copy)
|
| @@ -16,8 +16,8 @@
|
| #include "content/common/input_messages.h"
|
| #include "content/common/view_messages.h"
|
| #include "content/public/common/content_switches.h"
|
| +#include "ipc/ipc_channel.h"
|
| #include "ipc/ipc_listener.h"
|
| -#include "ipc/ipc_sender.h"
|
| #include "ui/gfx/vector2d_f.h"
|
|
|
| using blink::WebInputEvent;
|
| @@ -89,9 +89,9 @@
|
| scoped_ptr<IPC::Message>(new ViewHostMsg_DidStopFlinging(routing_id)));
|
| }
|
|
|
| -void InputEventFilter::OnFilterAdded(IPC::Sender* sender) {
|
| +void InputEventFilter::OnFilterAdded(IPC::Channel* channel) {
|
| io_loop_ = base::MessageLoopProxy::current();
|
| - sender_ = sender;
|
| + sender_ = channel;
|
| }
|
|
|
| void InputEventFilter::OnFilterRemoved() {
|
|
|