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

Unified Diff: chrome/renderer/mock_render_thread.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 | « 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
diff --git a/chrome/renderer/mock_render_thread.cc b/chrome/renderer/mock_render_thread.cc
index 1fa513fe0c138533696645b82c5d0681fcc71958..35383cbc370728a0a5f472cca3b25557b7ac1134 100644
--- a/chrome/renderer/mock_render_thread.cc
+++ b/chrome/renderer/mock_render_thread.cc
@@ -34,6 +34,16 @@ void MockRenderThread::RemoveRoute(int32 routing_id) {
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.
@@ -66,7 +76,7 @@ void MockRenderThread::SendCloseMessage() {
void MockRenderThread::OnMessageReceived(const IPC::Message& msg) {
// Save the message in the sink.
- sink_.OnMessageReceived(msg);
+ sink_.Send(const_cast<IPC::Message*>(&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