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

Unified Diff: chrome/renderer/mock_render_thread.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 | « chrome/renderer/mock_render_thread.h ('k') | chrome/renderer/pepper_devices_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/mock_render_thread.cc
===================================================================
--- chrome/renderer/mock_render_thread.cc (revision 42691)
+++ chrome/renderer/mock_render_thread.cc (working copy)
@@ -34,16 +34,6 @@
widget_ = NULL;
}
-// Called by, for example, RenderView::Init(), when adding a new message filter
-void MockRenderThread::AddFilter(IPC::ChannelProxy::MessageFilter* filter) {
- filter->OnFilterAdded(&sink());
-}
-
-// Called when the filter is removed
-void MockRenderThread::RemoveFilter(IPC::ChannelProxy::MessageFilter* filter) {
- filter->OnFilterRemoved();
-}
-
// Called by the Widget. Used to send messages to the browser.
// We short-circuit the mechanim and handle the messages right here on this
// class.
@@ -76,7 +66,7 @@
void MockRenderThread::OnMessageReceived(const IPC::Message& msg) {
// Save the message in the sink.
- sink_.Send(const_cast<IPC::Message*>(&msg));
+ sink_.OnMessageReceived(msg);
// Some messages we do special handling.
bool handled = true;
« no previous file with comments | « chrome/renderer/mock_render_thread.h ('k') | chrome/renderer/pepper_devices_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698