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

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

Issue 1207005: Add a Pepper audio basic functionality unit test. (Closed)
Patch Set: Fixed style issues. 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
« 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 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
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
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