OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "chrome/common/ipc_test_sink.h" | 5 #include "chrome/common/ipc_test_sink.h" |
6 | 6 |
7 namespace IPC { | 7 namespace IPC { |
8 | 8 |
9 TestSink::TestSink() { | 9 TestSink::TestSink() { |
10 } | 10 } |
11 | 11 |
12 TestSink::~TestSink() { | 12 TestSink::~TestSink() { |
13 } | 13 } |
14 | 14 |
15 bool TestSink::Send(Message* msg) { | 15 void TestSink::OnMessageReceived(const Message& msg) { |
16 messages_.push_back(Message(*msg)); | 16 messages_.push_back(Message(msg)); |
17 return true; | |
18 } | 17 } |
19 | 18 |
20 void TestSink::ClearMessages() { | 19 void TestSink::ClearMessages() { |
21 messages_.clear(); | 20 messages_.clear(); |
22 } | 21 } |
23 | 22 |
24 const Message* TestSink::GetMessageAt(size_t index) const { | 23 const Message* TestSink::GetMessageAt(size_t index) const { |
25 if (index >= messages_.size()) | 24 if (index >= messages_.size()) |
26 return NULL; | 25 return NULL; |
27 return &messages_[index]; | 26 return &messages_[index]; |
(...skipping 15 matching lines...) Expand all Loading... |
43 found_count++; | 42 found_count++; |
44 found_index = i; | 43 found_index = i; |
45 } | 44 } |
46 } | 45 } |
47 if (found_count != 1) | 46 if (found_count != 1) |
48 return NULL; // Didn't find a unique one. | 47 return NULL; // Didn't find a unique one. |
49 return &messages_[found_index]; | 48 return &messages_[found_index]; |
50 } | 49 } |
51 | 50 |
52 } // namespace IPC | 51 } // namespace IPC |
OLD | NEW |