Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(14)

Side by Side Diff: chrome/common/ipc_test_sink.cc

Issue 1344003: Revert 42656 - Add a Pepper audio basic functionality unit test.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/common/ipc_test_sink.h ('k') | chrome/renderer/mock_render_thread.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « chrome/common/ipc_test_sink.h ('k') | chrome/renderer/mock_render_thread.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698