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 void TestSink::OnMessageReceived(const Message& msg) { | 15 bool TestSink::Send(Message* msg) { |
16 messages_.push_back(Message(msg)); | 16 messages_.push_back(Message(*msg)); |
| 17 return true; |
17 } | 18 } |
18 | 19 |
19 void TestSink::ClearMessages() { | 20 void TestSink::ClearMessages() { |
20 messages_.clear(); | 21 messages_.clear(); |
21 } | 22 } |
22 | 23 |
23 const Message* TestSink::GetMessageAt(size_t index) const { | 24 const Message* TestSink::GetMessageAt(size_t index) const { |
24 if (index >= messages_.size()) | 25 if (index >= messages_.size()) |
25 return NULL; | 26 return NULL; |
26 return &messages_[index]; | 27 return &messages_[index]; |
(...skipping 15 matching lines...) Expand all Loading... |
42 found_count++; | 43 found_count++; |
43 found_index = i; | 44 found_index = i; |
44 } | 45 } |
45 } | 46 } |
46 if (found_count != 1) | 47 if (found_count != 1) |
47 return NULL; // Didn't find a unique one. | 48 return NULL; // Didn't find a unique one. |
48 return &messages_[found_index]; | 49 return &messages_[found_index]; |
49 } | 50 } |
50 | 51 |
51 } // namespace IPC | 52 } // namespace IPC |
OLD | NEW |