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