Index: chrome/common/ipc_test_sink.cc |
=================================================================== |
--- chrome/common/ipc_test_sink.cc (revision 42691) |
+++ chrome/common/ipc_test_sink.cc (working copy) |
@@ -12,9 +12,8 @@ |
TestSink::~TestSink() { |
} |
-bool TestSink::Send(Message* msg) { |
- messages_.push_back(Message(*msg)); |
- return true; |
+void TestSink::OnMessageReceived(const Message& msg) { |
+ messages_.push_back(Message(msg)); |
} |
void TestSink::ClearMessages() { |