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

Unified Diff: chrome/browser/renderer_host/mock_render_process_host.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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/common/ipc_test_sink.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/renderer_host/mock_render_process_host.cc
diff --git a/chrome/browser/renderer_host/mock_render_process_host.cc b/chrome/browser/renderer_host/mock_render_process_host.cc
index b18cc50d8bb0f23029e8f49514f79c88e80ff685..7319c99afc658bac9706aa55bfa2cb08bae01c65 100644
--- a/chrome/browser/renderer_host/mock_render_process_host.cc
+++ b/chrome/browser/renderer_host/mock_render_process_host.cc
@@ -73,14 +73,14 @@ bool MockRenderProcessHost::FastShutdownIfPossible() {
bool MockRenderProcessHost::SendWithTimeout(IPC::Message* msg, int timeout_ms) {
// Save the message in the sink. Just ignore timeout_ms.
- sink_.OnMessageReceived(*msg);
+ sink_.Send(msg);
delete msg;
return true;
}
bool MockRenderProcessHost::Send(IPC::Message* msg) {
// Save the message in the sink.
- sink_.OnMessageReceived(*msg);
+ sink_.Send(msg);
delete msg;
return true;
}
« no previous file with comments | « no previous file | chrome/common/ipc_test_sink.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698