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

Unified Diff: chrome/browser/renderer_host/mock_render_process_host.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 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
===================================================================
--- chrome/browser/renderer_host/mock_render_process_host.cc (revision 42691)
+++ chrome/browser/renderer_host/mock_render_process_host.cc (working copy)
@@ -73,14 +73,14 @@
bool MockRenderProcessHost::SendWithTimeout(IPC::Message* msg, int timeout_ms) {
// Save the message in the sink. Just ignore timeout_ms.
- sink_.Send(msg);
+ sink_.OnMessageReceived(*msg);
delete msg;
return true;
}
bool MockRenderProcessHost::Send(IPC::Message* msg) {
// Save the message in the sink.
- sink_.Send(msg);
+ sink_.OnMessageReceived(*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