Chromium Code Reviews| Index: content/browser/renderer_host/input/input_router_impl_unittest.cc |
| diff --git a/content/browser/renderer_host/input/input_router_impl_unittest.cc b/content/browser/renderer_host/input/input_router_impl_unittest.cc |
| index 732682113476fc295c7f38d96442e80d7ef96e80..f65b1e244e52a4105ac7a1643c51831a046f8482 100644 |
| --- a/content/browser/renderer_host/input/input_router_impl_unittest.cc |
| +++ b/content/browser/renderer_host/input/input_router_impl_unittest.cc |
| @@ -354,7 +354,7 @@ TEST_F(InputRouterImplTest, CoalescesRangeSelection) { |
| // Now ack the first message. |
| { |
| - scoped_ptr<IPC::Message> response(new ViewHostMsg_SelectRange_ACK(0)); |
| + scoped_ptr<IPC::Message> response(new InputHostMsg_SelectRange_ACK(0)); |
|
jdduke (slow)
2014/10/27 15:22:13
Maybe a short test that interleaves RangeSelection
|
| input_router_->OnMessageReceived(*response); |
| } |
| @@ -367,7 +367,7 @@ TEST_F(InputRouterImplTest, CoalescesRangeSelection) { |
| // Acking the coalesced msg should not send any more msg. |
| { |
| - scoped_ptr<IPC::Message> response(new ViewHostMsg_SelectRange_ACK(0)); |
| + scoped_ptr<IPC::Message> response(new InputHostMsg_SelectRange_ACK(0)); |
| input_router_->OnMessageReceived(*response); |
| } |
| EXPECT_EQ(0u, GetSentMessageCountAndResetSink()); |
| @@ -391,7 +391,7 @@ TEST_F(InputRouterImplTest, CoalescesCaretMove) { |
| // Now ack the first message. |
| { |
| - scoped_ptr<IPC::Message> response(new ViewHostMsg_MoveCaret_ACK(0)); |
| + scoped_ptr<IPC::Message> response(new InputHostMsg_MoveCaret_ACK(0)); |
| input_router_->OnMessageReceived(*response); |
| } |
| @@ -402,7 +402,7 @@ TEST_F(InputRouterImplTest, CoalescesCaretMove) { |
| // Acking the coalesced msg should not send any more msg. |
| { |
| - scoped_ptr<IPC::Message> response(new ViewHostMsg_MoveCaret_ACK(0)); |
| + scoped_ptr<IPC::Message> response(new InputHostMsg_MoveCaret_ACK(0)); |
| input_router_->OnMessageReceived(*response); |
| } |
| EXPECT_EQ(0u, GetSentMessageCountAndResetSink()); |